diff --git a/.eslintignore b/.eslintignore index e6a8fec608ca..b3a164bf929d 100644 --- a/.eslintignore +++ b/.eslintignore @@ -16,4 +16,4 @@ Makefile README.md package.json package-lock.json - +static/ diff --git a/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/conclusion.mdx b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/conclusion.mdx new file mode 100644 index 000000000000..75b429f07809 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/conclusion.mdx @@ -0,0 +1,25 @@ +--- +docType: "Chapter" +id: "conclusion" +chapterTitle: "Conclusion" +description: "Concluding this tutorial, you will gain a comprehensive understanding of how to configure, deploy, and manage the Ambassador Edge Stack with Meshery." +videos: 0 +lectures: 4 +order: 4 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + + +In this tutorial, you explored the Ambassador Edge Stack (AES) system using Meshery Playground. By leveraging **Kanvas**, you were able to clearly visualize resource relationships, providing a view of the functionalities and roles within the AES system. You should now have a solid understanding of how to configure, deploy, and manage the Ambassador Edge Stack with Meshery. + +Here's a recap of the lessons learned in this course: + +1. The Ambassador Edge Stack (AES) system can be explored using Meshery Playground. +2. Kanvas provides a clear visualization of resource relationships in the AES system. +3. Configuring, deploying, and managing the Ambassador Edge Stack with Meshery is now well understood. + +By following this tutorial, you have gained a comprehensive understanding of the Ambassador Edge Stack and its integration with Meshery. Congratulations on completing the course! + + + diff --git a/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/design-interpretation.mdx b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/design-interpretation.mdx new file mode 100644 index 000000000000..25905336970a --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/design-interpretation.mdx @@ -0,0 +1,68 @@ +--- +docType: "Chapter" +id: "design-interpretation" +chapterTitle: "Interpreting the Edge Stack Meshery Design" +description: "This chapter explores the relationships between different components in the Ambassador Edge Stack (AES) system using a Kanvas design. It covers the roles and communication ports of each component, as well as the service account roles and relationships within the AES system." +videos: 0 +lectures: 4 +order: 3 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import es8 from "../../../../src/assets/images/learning-path/edge-stack/es8.png"; +import es9 from "../../../../src/assets/images/learning-path/edge-stack/es9.png"; + + + +

+ Exploring the Relationships Between Edge Stack Resources with a Kanvas Design +

+ +

Services and Deployments

+ +The design below shows the traffic flow between some major components in the the Ambassador Edge Stack (AES) system. + + + + + + +The components include ; + +2. edge-stack-agent Deployment +3. edge-stack Deployment +4. edge-stack-admin Service and +5. edge-stack Service + +Let's take a look at the roles of each component and the ports used for communication. + +1. **edge-stack Service**:This serves as the primary entry point for incoming traffic. It listens on ports 80 and 443, handling HTTP and HTTPS traffic respectively. This component routes the incoming requests to the appropriate internal services within the AES system. + +2. **edge-stack-agent**: This is responsible for specific tasks within the AES system. It receives traffic from the edge-stack service on port 80/TCP. The agent handles various operational tasks, including diagnostics and reporting to the Ambassador Cloud. + +3. **edge-stack-admin Service**: This Service provides administrative functions and health checks for the AES system. It communicates with the edge-stack component on port 8877/TCP for administrative purposes. + +4. **edge-stack Deployment**:The edge-stack Deployment component is a core part of the Ambassador Edge Stack, handling the main processing and routing of traffic. It receives traffic from the edge-stack service on port 80/TCP and communicates with the edge-stack-admin component on port 8877/TCP for administrative tasks. + +

Service Account Roles

+ + + + + +The diagram above shows one of the role assignments and service account relationships within +the Ambassador Edge Stack (AES) system. You can see that the Service Account (edge-stack) is +linked to both the ClusterRole (edge-stack) and the Role (edge-stack-apiext) through ClusterRoleBinding +and RoleBinding. + +With the help of Kanvas, these connections become clear and easy to understand. + +
+ +
+
diff --git a/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/edge-stack-configuration.mdx b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/edge-stack-configuration.mdx new file mode 100644 index 000000000000..587490ce44ff --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/edge-stack-configuration.mdx @@ -0,0 +1,163 @@ +--- +docType: "Chapter" +id: "edge-stack-configuration" +chapterTitle: "Edge Stack Configuration" +description: "This chapter covers the configuration of the Edge Stack, including importing and deploying Edge Stack Custom Resource Definitions (CRDs) and YAML files. You will learn how to configure the necessary Ambassador Cloud license and set up essential components like Listener and Mapping resources. Finally, you will deploy a sample Quote service application to route traffic through Edge Stack." +videos: 0 +lectures: 4 +order: 2 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import es1 from "../../../../src/assets/images/learning-path/edge-stack/es1.png"; +import es2 from "../../../../src/assets/images/learning-path/edge-stack/es2.png"; +import es3 from "../../../../src/assets/images/learning-path/edge-stack/es3.png"; +import es4 from "../../../../src/assets/images/learning-path/edge-stack/es4.png"; +import es5 from "../../../../src/assets/images/learning-path/edge-stack/es5.png"; +import es6 from "../../../../src/assets/images/learning-path/edge-stack/es6.png"; +import es10 from "../../../../src/assets/images/learning-path/edge-stack/es10.png"; + + + +In this chapter, you will import and deploy Edge Stack Custom Resource Definitions (CRDs) and YAML files. You'll learn how to configure the necessary Ambassador Cloud license and set up essential components like Listener and Mapping resources. Finally, you'll deploy a sample Quote service application to route traffic through Edge Stack. + +

Steps

+ +

Import Edge Stack CRD YAML and Deploy

+ +The Edge Stack CRD YAML file typically contains the definitions for custom resources used by Edge Stack. These definitions include the schemas and validation rules for resources like Mappings, Hosts, TLSContexts, RateLimits, Filters, and more. These custom resources allow you to define and manage the various aspects of your API gateway configuration, such as routing, authentication, rate limiting, and TLS settings, directly within your Kubernetes cluster. + +1. In the left sidebar, click on the upward arrow symbol (import icon) to import the file into Meshery. + +2. In the modal that appears: + - Enter a name for your design in the **Design File Name** field (e.g. _Edge-stack-crd_). + - Select _Kubernetes Manifest_ from the **Design Type** dropdown menu. + - Choose **Url upload** for the upload method, and paste in the [Edge-Stack-crd](https://app.getambassador.io/yaml/edge-stack/3.11.0/aes-crds.yaml) YAML link. + - Then, click on **Import**. + + + + + +3. Click on the name of the design on the Designs tab to display the visual representations of the various Kubernetes resources and their relationships on the canvas. + +4. Click **Actions** in the top right corner and click on Deploy (double tick). + +5. To check the status of your deployment, click on the notification icon on the top right corner. + + + + + +6. Click on **Open In visualizer** to navigate to the Visualize section and see a pre-filtered view of the deployed resources in the cluster. + + + + + +

Import the Edge Stack YAML

+ +Now that the CRDs have been deployed, go ahead to deploy the main Edge Stack Configuration. + +1. Follow the previous Steps to Import the [Edge Stack YAML](https://app.getambassador.io/yaml/edge-stack/3.11.0/aes.yaml) into Kanvas with the name _Edge-Stack_. + + + + + +2. You can use the **Group Components** icon on the dock below to group resources based on shared labels or annotations. + + + + + +

Configure Edge Stack License

+ +Ambassador Edge Stack requires a valid license to operate. Generate your [license token](https://app.getambassador.io/cloud/edge-stack/license/new) to establish a secure connection between Edge Stack and Ambassador Cloud. + +1. Complete the steps on the Ambassador Cloud to generate your license token, then copy the token. Be sure to convert it into **base64** format. You can use an online tool for this conversion. + +2. Click on the Secret component on the design canvas and input the token. + + + + + +

Deploy Edge Stack

+ +1. Click **Actions** in the top right corner and click on Deploy (double tick). + +2. Click on **Open In visualizer** to navigate to the Visualize section and see a pre-filtered view of the deployed resources in the cluster. + + + + + +

Listener Custom Resource

+ +The Listener Custom Resource tells Ambassador Edge Stack what port to listen on. + +1. Copy the following the YAML and save it to a file called _listener.yaml_ , then import it into Kanvas. + +```YAML +--- +apiVersion: getambassador.io/v3alpha1 +kind: Listener +metadata: + name: edge-stack-listener-8080 + namespace: ambassador +spec: + port: 8080 + protocol: HTTP + securityModel: XFP + hostBinding: + namespace: + from: ALL +--- +apiVersion: getambassador.io/v3alpha1 +kind: Listener +metadata: + name: edge-stack-listener-8443 + namespace: ambassador +spec: + port: 8443 + protocol: HTTPS + securityModel: XFP + hostBinding: + namespace: + from: ALL +EOF + +``` + +2. Deploy the resource on Kanvas. + +

Mapping Resource

+ +Create a Mapping configuration that instructs Edge Stack on how and where to route traffic. In the YAML file below, any request coming to the specified _hostname_ with the _prefix_ /backend/ will be directed to the _quote service_. + +Copy the following the YAML and save it to a file called _mapping.yaml_ , then import it into Kanvas. + +```YAML +apiVersion: getambassador.io/v3alpha1 +kind: Mapping +metadata: + name: quote-backend +spec: + hostname: "*" + prefix: /backend/ + service: quote + docs: + path: "/.ambassador-internal/openapi-docs" + +``` + +

Deploy Quote Service

+ +Next, import the [Quote Service YAML](https://app.getambassador.io/yaml/v2-docs/3.9.1/quickstart/qotm.yaml) and deploy it on Kanvas. This step will create the necessary deployment and service resources for the Quote service within your Kubernetes cluster, allowing you to see how Edge Stack manages and routes traffic to this backend service. + + + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/introduction.mdx b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/introduction.mdx new file mode 100644 index 000000000000..cb4a9fa24109 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/edge/introduction.mdx @@ -0,0 +1,66 @@ +--- +docType: "Chapter" +id: "introduction" +chapterTitle: "Introduction" +description: "Ambassador Edge Stack is a powerful API gateway built on Envoy Proxy. It simplifies the configuration, deployment, and management of APIs in Kubernetes environments. With features like automatic TLS, authentication, rate limiting, load balancing, and observability, Ambassador Edge Stack ensures scalability and flexibility for high traffic volumes and distributed requests across multiple services in your cluster." +videos: 0 +lectures: 4 +order: 1 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + + +

Overview

+ +In this tutorial, you will explore Edge Stack using Meshery Playground. You'll get hands-on experience importing YAML files that contain Edge Stack configurations and Custom Resource Definitions (CRDs). + +You'll use Kanvas to view, configure, and deploy Kubernetes resources, including Edge Stack with its custom resources and a sample application. Additionally, you'll leverage Meshery's visualization tool to filter the deployed resources in your cluster. + +

Objectives

+ +This tutorial will guide you through exploring Edge Stack using Meshery Playground. You'll cover: + +1. **Importing YAML Files**: Learn how to import YAML files containing Edge Stack configurations and CRDs (Custom Resource Definitions) into Kanvas. +2. **Design Configuration**: Configure a Kubernetes component on the Playground Canvas. +3. **Deployment**: Deploy Edge Stack alongside a sample application and custom resources. +4. **Visualization**: Get hands-on with Kanvas to understand the components and their interactions within Edge Stack. +5. **Design Interpretation**: Explore some of the relationships between Edge Stack resources with a Kanvas design, explaining their functionalities and roles within the system. + +

Meshery Playground and Kanvas

+ +**Meshery Playground** is an interactive and collaborative live cluster environment that simplifies +the deployment process and enhances user experience by providing visual tools for managing +Kubernetes resources. + +[**Kanvas**](https://docs.layer5.io/kanvas/) is a visual tool within Meshery that allows users to interact with and manage Kubernetes resources. It provides a graphical interface for viewing, configuring, and deploying resources, making it easier to understand the relationships and interactions between different components in a Kubernetes cluster. + +If this is your first time working with Meshery Playground, consider starting with the [Exploring Kubernetes Pods with Meshery Playground](https://docs.meshery.io/guides/tutorials/kubernetes-pods) tutorial first. + +

Ambassador Edge Stack

+ +Ambassador [Edge Stack](https://www.getambassador.io/products/edge-stack/api-gateway) is a Kubernetes-native API Gateway built on [Envoy Proxy](https://www.envoyproxy.io/). It streamlines Kubernetes workflows for configuration, deployment, and management of APIs, efficiently snd securely managing high traffic volumes and distributing requests across multiple services in your cluster. + +The "stack" includes security functionalities such as automatic TLS, authentication, and rate limiting, as well as load balancing, ingress control and observability all integrated to ensure scalability and flexibility in Kubernetes environments. + +

Prerequisites

+ +- Basic understanding of Kubernetes concepts. +- Access to the _Meshery Playground_. If you don't have an account, sign up at [Meshery Playground](https://play.meshery.io/). +- [Ambassador Cloud](https://www.getambassador.io/solutions/ambassador-cloud) account. + +

Access Meshery Playground

+ +1. Log in to the [Meshery Playground](https://meshery.layer5.io/) using your credentials. +2. Click **Explore** in the Cloud Native Playground tile to navigate to _Kanvas_. + +
+ +
+
diff --git a/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/index.mdx b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/index.mdx new file mode 100644 index 000000000000..c1ee7724243a --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/ambassador-edge-stack-api-gateway-with-meshery/index.mdx @@ -0,0 +1,33 @@ +--- +docType: "Course" +title: "Course" +description: "This course will guide you through the process of deploying and visualizing Edge Stack components with Meshery. You will learn how to install and configure the Ambassador API Gateway and explore its integration with Meshery. Additionally, you will gain hands-on experience with two popular service meshes, Istio and Linkerd. By the end of this course, you will have a solid understanding of Edge Stack deployment and be able to leverage Meshery for managing your API gateway and service mesh configurations." +videos: 0 +lectures: 4 +courseTitle: "Ambassador Edge Stack API Gateway with Meshery" +themeColor: "#00B39F" +order: 1 +cardImage: "../../../src/assets/images/service-mesh-icons/linkerd-white.svg" +meshesYouLearn: + [ + { + imagepath: "../../../src/assets/images/service-mesh-icons/istio.svg", + name: "Istio", + }, + { + imagepath: "../../../src/collections/integrations/ambassador/icons/color/ambassador-color.svg", + name: "edge", + }, + { + imagepath: "../../../src/assets/images/service-mesh-icons/linkerd.svg", + name: "Linkerd", + }, + ] +toc: + [ + "introduction", + "edge-stack-configuration", + "design-interpretation", + "conclusion" + ] +--- diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/index.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/index.mdx new file mode 100644 index 000000000000..aa894583f6e9 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/index.mdx @@ -0,0 +1,39 @@ +--- +docType: "Course" +title: "Course" +description: "Learn how to deploy WordPress and MySQL with persistent volumes with Meshery Playground" +videos: 4 +lectures: 7 +courseTitle: "Deploying WordPress and MySql with Persistent Volumes with Meshery" +themeColor: "#00B39F" +order: 1 +cardImage: "../../../src/assets/images/service-mesh-icons/linkerd-white.svg" +meshesYouLearn: + [ + { + imagepath: "../../../src/assets/images/service-mesh-icons/istio.svg", + name: "Istio", + }, + { + imagepath: "../../../src/assets/images/service-mesh-icons/linkerd.svg", + name: "Linkerd", + }, + { + imagepath: "../../../src/collections/integrations/mysql-operator/icons/components/mysql-database/icons/color/mysql-database-color.svg", + name: "sql", + }, + ] +toc: + [ + "introduction", + "import-designs", + "configure-components", + "group-components", + "deploy", + "visualize", + "conclusion" + ] +--- + +A course to help you deploy wordpress and MySQL Database with persistent volumes with Meshery Playground. + diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/conclusion.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/conclusion.mdx new file mode 100644 index 000000000000..d6d95cd40b8e --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/conclusion.mdx @@ -0,0 +1,18 @@ +--- +docType: "Chapter" +id: "conclusion" +chapterTitle: "Conclusion" +description: "" +videos: 4 +lectures: 12 +order: 7 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + + + + +Congratulations! You’ve successfully completed the tutorial on deploying a WordPress site and MySQL database with Persistent Volumes using Meshery Playground. This hands-on experience should have given you valuable insights into importing manifest files, visualizing resources, creating persistent volumes, and managing deployments in Meshery Playground. + + diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/configure-components.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/configure-components.mdx new file mode 100644 index 000000000000..c4e33b2eca6a --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/configure-components.mdx @@ -0,0 +1,118 @@ +--- +docType: "Chapter" +id: "configure-components" +chapterTitle: "Create and Configure Kubernetes Components" +description: "In this section you will create and configure Persistent Volumes, Persistent Volume Claims and a Secret for the Database." +videos: 4 +lectures: 12 +order: 3 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import wp8 from "../../../../src/assets/images/learning-path/sql/wp8.png"; +import wp9 from "../../../../src/assets/images/learning-path/sql/wp9.png"; +import wp10 from "../../../../src/assets/images/learning-path/sql/wp10.png"; +import wp11 from "../../../../src/assets/images/learning-path/sql/wp11.png"; +import wp12 from "../../../../src/assets/images/learning-path/sql/wp12.png"; +import wp13 from "../../../../src/assets/images/learning-path/sql/wp13.png"; + + + +

Create and Configure Secret for MySQL Database

+ +In this step, you create a Kubernetes secret component for the MySQL database. This is necessary because the configuration below is in the environment variables section of the mysql-deployment YAML file. + +```yaml +env: + - name: MYSQL_ROOT_PASSWORD + valueFrom: + secretKeyRef: + name: mysql-pass + key: password +``` + +Before you proceed, choose a password and convert it into base64 format. You can use an online tool for this conversion. For this example, the password is `password` and its base64 encoding is `cGFzc3dvcmQ=`. + +1. Click on the Kubernetes icon on the dock, search for `secret`, and click on it or drag it to the canvas. + +
+ + + + +_Figure: Create secret component_ + +2. Click on the Secret component to open the configuration window. + + - Set the _name_ as `mysql-pass` + - Set the _Type_ as `Opaque` + - Click **+** next to Data and add the secret as a key-value pair `password:cGFzc3dvcmQ=` + +
+ + + + +_Figure: Configure secret_ + +3. Click outside the window to close the configuration tab. + +

Create Persistent Volumes

+ +MySQL and WordPress each require a [Persistent Volume (PV)](https://kubernetes.io/docs/concepts/storage/persistent-volumes/) to store their data. + +For this tutorial, you will use the `manual` StorageClassName and set the Persistent Volume to use the `hostPath` type. + +Please note that using `hostPath` for Persistent Volumes is generally not recommended for production environments because it ties the volume to the node's filesystem, which can lead to data loss if the node fails. However, you can use it in this tutorial for development purposes. + +1. Click on the Kubernetes icon on the dock, search for `Persistent Volume`, and select it. Create two PVs. + +
+ + + + +_Figure: Create persistent volume_ + +2. Click on the wordpress PV to open the configuration window. + + - Change the "name" to `wp-pv` + - Set the "StorageClassName" as `manual` + - Click **+** next to "AccessMode" and enter `ReadWriteOnce` + +
+ + + + +_Figure: Configure persistent volume_ + + - Scroll down to "Capacity" and enter the key pair `storage:20Gi` + +
+ + + + +_Figure: Persistent volume capacity_ + + - Scroll down to "Hostpath" and input `mnt/data/wp-pv` for the _path_ and `DirectoryOrCreate` for the _type_. + +
+ + + + +_Figure: Persistent volume hostpath_ + +3. Repeat similar steps for the MySQL Persistent Volume + + - Click on the MySQL PV to open the configuration window. + - Change the "name" to `mysql-pv` + - Set the "StorageClassName" to `manual` + - Click **+** next to "AccessMode" and set it to `ReadWriteOnce` + - Scroll down to "Capacity" and enter the key pair `storage:20Gi` + - Scroll down to "Hostpath" and input `mnt/data/mysql-pv` for the _path_ and `DirectoryOrCreate` for the _type_. + +4. Click on `wp-pv-claim` and `mysql-pv-claim` and set their "StorageClassName" as `manual`. + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/deploy.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/deploy.mdx new file mode 100644 index 000000000000..5ca92647249d --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/deploy.mdx @@ -0,0 +1,68 @@ +--- +docType: "Chapter" +id: "deploy" +chapterTitle: "Validate and Deploy Resources" +description: "In this section you will validate your design and deploy the resources to a Kubernetes cluster" +videos: 4 +lectures: 12 +order: 5 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import wp15 from "../../../../src/assets/images/learning-path/sql/wp15.png"; +import wp16 from "../../../../src/assets/images/learning-path/sql/wp16.png"; +import wp17 from "../../../../src/assets/images/learning-path/sql/wp17.png"; +import wp18 from "../../../../src/assets/images/learning-path/sql/wp18.png"; +import wp22 from "../../../../src/assets/images/learning-path/sql/wp22.png"; + + + +

Deploy the Resources

+ +1. Click `Actions` in the top right corner and click on `Deploy`. + +
+ + + + +_Figure: Actions dropdown menu_ + +2. The design will be validated to make sure there are no errors. + +
+ + + + +_Figure: Validate design_ + +3. Choose the Kubernetes cluster you want to deploy to. + +
+ + + + +_Figure: Choose deployment Environment_ + + **_Note_**: The Meshery Playground is connected to live Kubernetes cluster(s) and allows users full control over these clusters but you can also have the option to add your own Kubernetes cluster to the Playground. + +4. Finally click `Deploy` to deploy the application to the cluster. + +
+ + + + +_Figure: Deploy resources_ + +5. To check the status of your deployment, click on the notification icon on the top right corner. You can click on `Open In visualizer` to navigate to the Visualize section or follow the steps below. + +
+ + + + +_Figure: Deploy resources_ + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/group-components.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/group-components.mdx new file mode 100644 index 000000000000..ae0b2d77f00b --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/group-components.mdx @@ -0,0 +1,49 @@ +--- +docType: "Chapter" +id: "group-components" +chapterTitle: "Add labels and Group Components" +description: "In this section you will add labels to components and learn how to group them." +videos: 4 +lectures: 12 +order: 4 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import wp14 from "../../../../src/assets/images/learning-path/sql/wp14.png"; +import wp21 from "../../../../src/assets/images/learning-path/sql/wp21.png"; + + + +

Add Labels

+ +To make it easier to filter and manage your resources during visualization, add labels to all of them. + +You can also choose to use the existing label, `app:wordpress`, but a new one, `dev:tutorial`, is recommended for this tutorial to prevent your resources from getting mixed up with others in the public playground cluster. + +1. Click on the label icon. +2. Click the **+** sign next to Labels. +3. Add the label `dev:tutorial`. +4. Do this for **all** the resources on the canvas. + +
+ + + + +_Figure: Add label_ + +5. Now click on `Save As` and save the design. + +

Group Components

+ +The _**Group Components**_ icon on the dock below allows you to group resources based on shared labels or annotations. + +This functionality aids in visualizing the relationships between various resources, making it easier to manage them, troubleshoot issues, and understand the overall cluster architecture. + +
+ + + + +_Figure: Group Components_ + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/import-designs.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/import-designs.mdx new file mode 100644 index 000000000000..f40bca6a65a8 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/import-designs.mdx @@ -0,0 +1,96 @@ +--- +docType: "Chapter" +id: "import-designs" +chapterTitle: "Import Design Files and Merge" +description: "Here we will import the design files in Meshery Playground and learn how to merge designs." +videos: 4 +lectures: 12 +order: 2 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import wp1 from "../../../../src/assets/images/learning-path/sql/wp1.png"; +import wp2 from "../../../../src/assets/images/learning-path/sql/wp2.png"; +import wp3 from "../../../../src/assets/images/learning-path/sql/wp3.png"; +import wp4 from "../../../../src/assets/images/learning-path/sql/wp4.png"; +import wp5 from "../../../../src/assets/images/learning-path/sql/wp5.png"; +import wp6 from "../../../../src/assets/images/learning-path/sql/wp6.png"; +import wp7 from "../../../../src/assets/images/learning-path/sql/wp7.png"; + + + +1. In the left sidebar, click on the upward arrow symbol (import icon) to import the designs into Meshery. +2. In the modal that appears: + - Enter a name for your design in the "Design File Name" field (e.g. `mysql-deployment`). + - Select `Kubernetes Manifest` from the "Design Type" dropdown menu. + +
+ + + + +_Figure: Import modal_ + +- Choose `File Upload` for the upload method, and select the file you just downloaded. +- Then, click on `Import`. +
+ + + + + _Figure: Import mysql-deployment_ + +3. Under the "Designs" tab, you will see the successfully imported `mysql-deployment` design. + + Clicking on the names of the designs on the `Designs` tab displays the visual representations of the various Kubernetes resources and their relationships on the canvas. + +
+ + + + + _Figure: Imported designs on canvas_ + +4. Now, follow the same steps to import the `wordpress-deployment` file. + +
+ + + + +_Figure: wordpress-deployment_ + +

Merging the Designs

+ +Next, you will combine the WordPress and MySQL designs into a single design file. By merging these designs, you can manage and deploy both resources together. + +To merge the MySQL deployment design with the WordPress deployment design: + +1. Click and drag the `mysql-deployment` design from the left panel and drop it onto the design canvas of the `wordpress-deployment`. + +
+ + + + + +_Figure: drag and drop design_ + +2. This action will open a merge modal asking if you want to merge the design, Click on `Merge`. + +
+ + + + +_Figure: merge modal_ + +3. Click on `Save As` and enter `wordpress-mysql-deployment` as the new file name. + +
+ + + + +_Figure: save design_ + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/introduction.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/introduction.mdx new file mode 100644 index 000000000000..ab24e11fdeb2 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/introduction.mdx @@ -0,0 +1,48 @@ +--- +docType: "Chapter" +id: "introduction" +chapterTitle: "Introduction" +description: "Get started with Meshery playground" +videos: 4 +lectures: 12 +order: 1 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + + +In this tutorial, you will learn how to deploy a **WordPress site and a MySQL database with Persistent Volumes** using Meshery Playground. Meshery Playground is an interactive and collaborative live cluster environment that simplifies the deployment process and enhances user experience by providing visual tools for managing Kubernetes resources. + +> **NOTE:** If this is your first time working with Meshery Playground, consider starting with the [Exploring Kubernetes Pods with Meshery Playground](https://docs.meshery.io/guides/tutorials/kubernetes-pods) tutorial first. + +

Prerequisites

+ +- Basic understanding of Kubernetes concepts. +- Access to the _Meshery Playground_. If you don't have an account, sign up at [Meshery Playground](https://play.meshery.io/). + +

Lab Scenario

+ +- Import the WordPress and MySQL manifest files into Meshery Playground. +- Create persistent volumes and a secret for the resources using the visual tools provided by Meshery. +- Deploy these resources on the playground. + +In this lab, you will import the WordPress and MySQL manifest files into Meshery Playground. You will visualize these Kubernetes resources and create persistent volumes for them using the visual tools provided by Meshery. Finally, you will deploy these resources on the Playground. + +

Objective

+ +Learn how to import manifest files, visualize Kubernetes resources, create new resource components, and deploy the application using Meshery Playground. + +

Steps

+ +

Download the Kubernetes Configuration Files

+ +Go ahead and download these yaml files [mysql-deployment.yaml](https://kubernetes.io/examples/application/wordpress/mysql-deployment.yaml) and [wordpress-deployment.yaml](https://kubernetes.io/examples/application/wordpress/wordpress-deployment.yaml) + +These YAML files contain the Service definitions, Persistent Volume Claims, and Deployment configurations for the WordPress site and the MySQL database. + +

Access Meshery Playground

+ +1. Log in to the [Meshery Playground](https://meshery.layer5.io/) using your credentials. On successful login, you should be at the dashboard. Press the **X** on the _Where do you want to start?_ popup to close it (if required). +2. Click **Explore** in the Cloud Native Playground tile to navigate to _Kanvas_ + +
\ No newline at end of file diff --git a/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/visualize.mdx b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/visualize.mdx new file mode 100644 index 000000000000..39a44e02bf30 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/deploying-wordpress-and-mysql-with-persistent-volumes-with-meshery/sql/visualize.mdx @@ -0,0 +1,67 @@ +--- +docType: "Chapter" +id: "visualize" +chapterTitle: "Visualize Deployed Resources" +description: "In this section you will use the Visualize tool to see the resources in the cluster" +videos: 4 +lectures: 12 +order: 6 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import wp19 from "../../../../src/assets/images/learning-path/sql/wp19.png"; +import wp20 from "../../../../src/assets/images/learning-path/sql/wp20.png"; +import wp23 from "../../../../src/assets/images/learning-path/sql/wp23.png"; + + + + +

Visualizing the Deployed Resources

+ +To view the resources deployed, use the Visualize section of the _Kanvas_. In this section, you can apply filters to display the specific resources you want to see. + +1. Move to the Visualize tab. +2. Click the filter icon and choose the appropriate filters + + - For "Kinds" select `Deployment`, `Service`, `PersistentVolume`, `PersistentVolumeClaim` and `Secret` + - For the "label" select `dev=tutorial` + +3. You can also use the icons on the right sidebar to filter the resources. + + - After selecting your filters, you should see a view displaying only your relevant resources, as shown in the image below. + +
+ + + + +_Figure: Filter resources_ + +

Resource Details

+ +You can click on any resource to view more details about it in the "Details" section on the right sidebar. + +**Deployment** + +
+ + + + +_Figure: Get more details about deployment_ + +**Service** + +The Service details only display the cluster IP for now. So there is no way to access the application externally. + +
+ + + + +_Figure: Get more details about service_ + +

Deleting Resources

+ +To delete the resources, use the `Undeploy` option from the Action dropdown in the _Design_ tab. + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/conclusion.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/conclusion.mdx new file mode 100644 index 000000000000..cbdd22c29c7c --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/conclusion.mdx @@ -0,0 +1,20 @@ +--- +docType: "Chapter" +id: "conclusion" +chapterTitle: "Conclusion" +description: +videos: 0 +lectures: 4 +order: 7 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + +Congratulations! You have reached the end of this course on understanding how Dapr works in a Kubernetes cluster, using Meshery as a visual guide. Throughout this course, you learned how to import Dapr, Redis, and application configuration files into Meshery and visualize the resources and their relationships. + +You successfully created and configured a Dapr state store component using Meshery. You deployed the designs and visualized the deployed resources in the cluster using Operator mode. Additionally, you viewed the Dapr sidecars and observed the resources deployed in the dapr-system and default namespaces. + +Finally, you streamed the logs and observed the API calls, gaining a deeper understanding of how Dapr's APIs, such as the state management API and service invocation API, work together to facilitate seamless inter-service communication and efficient management of application state. + +Well done on completing this course and enhancing your knowledge of Dapr and Meshery! + diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-dapr-control-plane.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-dapr-control-plane.mdx new file mode 100644 index 000000000000..5c1ad34c9613 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-dapr-control-plane.mdx @@ -0,0 +1,145 @@ +--- +docType: "Chapter" +id: "deploy-dapr-control-plane.mdx" +chapterTitle: "Deploy Dapr Control Plane" +description: "This chapter takes you through the import, exploration and deployment of Dapr control plane components" +videos: 0 +lectures: 4 +order: 2 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import daprHelm from "../../../../src/assets/images/learning-path/dapr/dapr-helm.png"; +import daprRelationship from "../../../../src/assets/images/learning-path/dapr/relationship.png"; +import daprGrouped from "../../../../src/assets/images/learning-path/dapr/grouped.png"; +import daprVisualizer from "../../../../src/assets/images/learning-path/dapr/dapr-visualizer.png"; + + + +The [Dapr control plane](https://docs.dapr.io/concepts/dapr-services/) is a set of services responsible for managing and orchestrating the runtime and configuration of Dapr. The control plane ensures the smooth operation, deployment, and management of Dapr sidecars and their interactions within a microservices architecture. + +

Steps

+ + +

Import Dapr Helm Chart

+ +1. In the left sidebar, click the upward arrow symbol(import icon) to import the file into Meshery. + +1. In the modal that appears: + - Enter a name for your design in the **Design File Name** field (e.g. _DAPR_). + - Select _Helm Chart_ from the **Design Type** dropdown menu. + - Navigate to the [Dapr Helm Chart page](https://artifacthub.io/packages/helm/dapr/dapr/1.14.0-rc.4?modal=install) on Artifact Hub. + - Right-click **this_link** at the bottom of the installation modal to copy the link address. + - Paste the copied link in the **URL** field. + - Then, click **Import**. + + + + + + +1. On the Designs tab on the left, click on the **DAPR** design you just imported. This will display the various Kubernetes resource components required for deploying the Dapr control plane on the canvas. + + + +

Design Interpretation

+ +From the design above, several key components that constitute the **Dapr control plane** can be observed, including: + +- **Dapr Sidecar Injector**: Automatically injects Dapr sidecars into the application pods. +- **Dapr Operator**: Manages the lifecycle of Dapr components and configurations within the Kubernetes cluster. +- **Dapr Placement Service**: Provides service discovery and routing for stateful applications, ensuring that stateful actors are placed correctly. +- **Dapr Sentry**: Handles certificate authority and manages secure communication between Dapr instances. + +Let’s take a closer look at some of the relationships between these components. + +**Statefulsets, Deployments, and Services** + + + +The triangles represent services, the rectangles represent deployments, and the cylinder icons represent statefulsets. Arrows indicate that a service is associated with a deployment/statefulset, exposing network access to it, indicative of an [Edge-Network](https://docs.meshery.io/concepts/logical/relationships#1-edge---network) relationship. The ports exposed by each service are shown at the ends of the arrows. To learn more about how to identify these components, see [Component Shape Guide](). + +To briefly take a look at one of these network relationships, click on the dapr-operator container in the deployment and its service to open their configuration tabs. + + + + + + +From the diagram above, the container within the `dapr-operator` deployment is configured to expose Container port **6500**. The `dapr-api` service listens on port **443** and forwards incoming traffic to Target Port **6500**. This is why the arrow is labeled with **443/TCP**. + +This illustrates how exposed ports are mapped to their corresponding services within a deployment configuration. + +**Roles, ClusterRoles, and ServiceAccountss** + + + +These resources represent Roles, ClusterRoles, ServiceAccounts, and other necessary RBAC configurations that the Dapr control plane requires within the cluster. An [Edge-permission](https://docs.meshery.io/concepts/logical/relationships#3-edge---permission) relationship exists between some of these components, which are bound through RoleBindings and ClusterRoleBindings. + + +**Custom Resource and Custom Resource Definitions** + + + +Dapr leverages several Custom Resource Definitions (CRDs) to allow users manage and define its configuration and operation.The key custom resources are **Configurations**, **Components**, **Resiliency**, **Subscriptions**, **HTTPEndpoints**. + +The **daprsystem** icon above is a custom resource of kind **Configuration**. It is used to configure global settings for Dapr components within a Kubernetes cluster. + +The **Dapr State Store component** that manages Redis, as we mentioned before in the introduction, is a custom resource of kind **Component**. The Component CRD defines the configuration for external resources such as state stores, pub/sub brokers, and secret stores. + +We can also explore relationships through grouped components. + +**Grouped Components** + + + + + + +Click on the **Group Components** icon on the dock at the bottom of the canvas to group resources based on shared labels or annotations. + +Using Meshery's grouping feature, we can organize related components, enhancing our understanding of the Dapr control plane within the Kubernetes environment. Let’s take a detailed look at the first group in the image above. It is the Dapr-sidecar-injector group consisting of these components: + +1. Deployment +1. Service, and +1. Mutating Webhook Configuration + +When a new application pod is deployed, the **dapr-sidecar-injector deployment** intercepts the pod creation request using the **Mutating Webhook Configuration** and programmatically attaches the Dapr sidecar to the pod based on configured annotations. + +The grouping of these components illustrates their interconnections, enhancing our ability to visualize and understand how various parts function together within the cluster. + +

Deploy Dapr

+1. The Dapr control plane has to deployed in the **dapr-system** namespace. Click on the namespaced components(deployments, services etc) to open up the configuration tab. Then change the namespace from **default** to **dapr-system**. + +1. To deploy, click **Actions** in the top right corner and click on Deploy (double tick). To learn about deploying Designs in Meshery, See Chapter [Deploying Meshery Designs](https://meshery.layer5.io/academy/learning-paths/mastering-meshery/introduction-to-meshery). + +1. After deployment, Click on **Open In Visualizer** to see the pre-filtered view of the deployed resources in the cluster. + +1. In **Visualizer** mode, use the filter to adjust the views of the resources in the cluster. + - For **View Selector** select **Single Node**. + - For **Kinds** select the resources you want to see including _Deployments, Pods, Services, Statefulset, Secret, Replicaset, Endpoints and Endpoint slices_. + + + + + + +Using Meshery, we have visualized the components of the Dapr control plane, explored their relationships, and successfully deployed Dapr. Our next step is to integrate the Redis store into our architecture. +
\ No newline at end of file diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-dapr-statestore-component.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-dapr-statestore-component.mdx new file mode 100644 index 000000000000..ada64e08e07a --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-dapr-statestore-component.mdx @@ -0,0 +1,68 @@ +--- +docType: "Chapter" +id: "deploy-dapr-statestore-component.mdx" +chapterTitle: "Deploy Dapr StateStore Component" +description: +videos: 0 +lectures: 4 +order: 4 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import dragComponentImage from "../../../../src/assets/images/learning-path/dapr/drag-component.png"; +import stateStoreImage from "../../../../src/assets/images/learning-path/dapr/state-store.png"; +import metadataImage from "../../../../src/assets/images/learning-path/dapr/metadata.png"; + + + +

Create, Configure and Deploy Dapr Redis State Store Component

+ +Following the deployment of the Redis state store, we will use Meshery to create and configure the Dapr state store component. This involves specifying essential details, including the redisHost and redisPassword fields in the Dapr component configuration, which tell Dapr where to find the Redis server and how to authenticate. + +This setup ensures that Dapr connects to the correct Redis instance, allowing it to handle state management seamlessly without direct involvement from your application. + +

Search for Component

+ +1. On the Dock at the bottom of the design canvas, click on **Components**. +1. Search for "dapr". +1. Click on the drop-down and drag and drop **component** to the design canvas. This is the Dapr component custom resource we discussed when learning about the Dapr control plane. + + + + + + +

Configure State Store and Deploy

+ +Now you can start configuring the Dapr state-store. + +1. Click on the component to open the configuration tab. +1. Enter _state-store_ as the **name**. +1. Enter _kubernetes_ in the **Secret store** field. +1. Enter _state.redis_ in the **Type** field. +1. Enter _v1_ in the **version** field. + + + + + + + +1. Click on the **metadata** drop-down and begin to fill in the info. +1. For **Name**, enter _redisHost_. +1. For **Value**, enter _redis-master.default.svc.cluster.local:6379_. +1. Under **Secret Key Ref**, enter the pair _redis:redis-password_. + + + + +5. Click the Actions button and deploy. + +Next we will deploy the Python and Node.js applications. + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-python-and-nodejs-application.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-python-and-nodejs-application.mdx new file mode 100644 index 000000000000..93ee290244d1 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-python-and-nodejs-application.mdx @@ -0,0 +1,62 @@ +--- +docType: "Chapter" +id: "deploy-python-and-nodejs-application.mdx" +chapterTitle: "Deploy Python and NodeJS application" +description: +videos: 0 +lectures: 4 +order: 5 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import filterNodePythonImg from "../../../../src/assets/images/learning-path/dapr/filter-node-python.png"; + + + + +

Deploy Node.js Application

+ +1. Clone [this](https://github.com/dapr/quickstarts.git) repo and cd into **quickstarts/tutorials/hello-kubernetes/deploy** directory to get the Node.js and Python YAML files. + +1. Import the Node.js application into Meshery. + + + +The Dapr annotations in the manifest file will let the Dapr sidecar injector know that it is supposed to inject a sidecar container into this pod during creation. + +```yaml +annotations: + dapr.io/enabled: "true" + dapr.io/app-id: "nodeapp" + dapr.io/app-port: "3000" + dapr.io/enable-api-logging: "true" +``` +1. Click the **Actions** button and deploy. + +

Deploy Python Application

+ +Follow previous steps to import and Deploy the python application. + + +Switch to visualizer and filter according to these specifications: + +- For **View Selector** select **Single Namespace**. +- For **Kinds** select the resources you want to see including _Deployments, Pods, Services, Replicaset_. +- For **Labels** select _app=node_ and _app=python_. + +You should see the daprd sidecar containers in both the python and node pods. + + + + + +
\ No newline at end of file diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-redis.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-redis.mdx new file mode 100644 index 000000000000..b9e19dbd80dd --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/deploy-redis.mdx @@ -0,0 +1,42 @@ +--- +docType: "Chapter" +id: "deploy-redis" +chapterTitle: "Deploy Redis" +description: "This chapter covers the deployment of Redis Statestore" +videos: 0 +lectures: 4 +order: 3 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import daprRedis from "../../../../src/assets/images/learning-path/dapr/redis-dapr.png"; + + + +

Import Redis Helm Chart and Deploy to Cluster

+ +1. Follow the same steps used for the Dapr deployment to import this [Redis helm chart](https://charts.bitnami.com/bitnami/redis-19.6.2.tgz) into Meshery and deploy. + + + +2. Click **Actions** to deploy, then click **Open In Visualizer**. +3. In **Visualizer** mode, use the filter to adjust the views of the resources in the cluster. + - For **View Selector** select **Single Node**. + - For **Kinds** select the resources you want to see including _Deployments,Pods, Services, Statefulset, Secret, Replicaset, Endpoints and Endpoint slices_. + - For **Namespaces** select _dapr_system_ and _default_. + +These filter settings will allow you to view both Dapr resources within the _dapr-system_ namespace and Redis resources within the default namespace. + + + + + + +Next, let's deploy the Dapr state store component that will manage this Redis state store. + +
diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/introduction.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/introduction.mdx new file mode 100644 index 000000000000..8e723df8be80 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/introduction.mdx @@ -0,0 +1,55 @@ +--- +docType: "Chapter" +id: "introduction" +chapterTitle: "Understanding How Dapr Works in a Kubernetes Cluster: A Visual Guide with Meshery" +description: "Learn how Dapr works by deploying Dapr and sample applications in a Kubernetes Cluster using Meshery." +videos: 0 +lectures: 4 +order: 1 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import daprArchitecture from "../../../../src/assets/images/learning-path/dapr/architecture.png"; + + + +

Introduction

+ +In this tutorial, you will explore how [Dapr](https://dapr.io/)(Distributed Application Runtime) operates within a Kubernetes cluster. + +Using Meshery you will deploy the Dapr Helm chart along with sample applications: a Python application that generates messages and a Node.js application that consumes and stores those messages in a Redis state store, managed through Dapr's state store component model. + +Meshery's Kanvas visualization capabilities allow you to examine the components involved in this architecture and understand their relationships. This breakdown helps you see how Dapr interacts with the applications, enhancing your comprehension of its functionality. + +This tutorial expands on the [Hello Kubernetes tutorial with Dapr](https://github.com/dapr/quickstarts/tree/master/tutorials/hello-kubernetes), providing a visual approach to learning Dapr in a Kubernetes environment. + + +

Dapr Architecture

+ +In a Dapr-enabled application, the sidecar architecture is central to how Dapr provides its functionalities. Each application pod in your Kubernetes cluster gets a Dapr sidecar injected, which acts as a proxy and mediator for service-to-service calls, state management, and other capabilities. This architecture allows Dapr to offer a set of APIs that simplify common microservice tasks such as **service invocation**, **state management**, and **pub/sub messaging**. + +When one service needs to call another, the request is made to the local Dapr sidecar, which routes the request to the appropriate sidecar in the target service's pod. The target sidecar then forwards the request to its application. + +Similarly, when your application makes a state management request (e.g., saving or retrieving state), it communicates with its local Dapr sidecar. The sidecar then uses the configuration retrieved from the Dapr control plane to interact with the configured state store. + +This architecture ensures that your application remains loosely coupled and can leverage Dapr's capabilities without being tightly integrated with the infrastructure details. + +The diagram below illustrates this setup, providing a visual representation of how Dapr components interact within the architecture. We will explore more on these concepts in subsequent chapters. + + + + + +**Prerequisite** + +1. Access to Meshery ([Self-Hosted](https://docs.meshery.io/installation) or [Meshery Playground](https://docs.meshery.io/installation/playground)). +1. Kubernetes Cluster connected to Meshery. + +**_Available Clusters:_**: If you are using a self-hosted Meshery deployment, connect to your Kubernetes cluster using this [Guide](https://docs.meshery.io/installation/kubernetes). Alternatively, Meshery Playground users can use the live pre-registered Kubernetes connection. This tutorial uses a self-hosted Meshery deployment with a connected **Minikube** cluster. + +

Learning Objectives

+ +1. Gain hands-on experience in deploying Dapr on a Kubernetes cluster using Meshery. +1. Learn how to visualize these components using Meshery and get a better understanding of the Dapr architecture and interactions. +1. Understand how to use Dapr's state management capabilities to persist data in a Redis state store, and see how the Node.js app interacts with the state store to save and retrieve data. + +
\ No newline at end of file diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/view-application-logs.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/view-application-logs.mdx new file mode 100644 index 000000000000..9ba4f1459acd --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/dapr/view-application-logs.mdx @@ -0,0 +1,74 @@ +--- +docType: "Chapter" +id: "view-application-logs" +chapterTitle: "View Application Logs" +description: "Use Meshery's interactive terminal to view logs of applications" +videos: 0 +lectures: 4 +order: 6 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import daprStream from "../../../../src/assets/images/learning-path/dapr/stream.png"; + + + +In this chapter, we will explore how Dapr utilizes its [API constructs](https://docs.dapr.io/concepts/building-blocks-concept/) to facilitate communication and manage the state of application data within this architecture by observing the container logs. + +

Python Application Logs

+ +The Python application code above generates messages that contain data with an **orderId** that increments once per second. + +Here's a snippet from the Python script in **app.js**: + +```python +dapr_port = os.getenv("DAPR_HTTP_PORT", 3500) +dapr_url = "http://localhost:{}/neworder".format(dapr_port) + +n = 0 +while True: + n += 1 + message = {"data": {"orderId": n}} + + try: + response = requests.post(dapr_url, json=message) + except Exception as e: + print(e) + + time.sleep(1) +``` +The Dapr sidecar for the Python application sends a POST request to the Dapr sidecar of the Node.js application using the **Dapr service invocation API**. Here's a breakdown of what happens; + +1. The Python app sends a POST request to its sidecar at http://localhost:3500/v1.0/invoke/nodeapp/method/neworder. _Note: http://localhost:3500 is the default listening port for Dapr_. + +1. The sidecar for the Python app invokes the nodeapp service through its own Dapr sidecar. + +The Python app does not need to know the exact address or port of the Node.js service, it simply makes a request to its sidecar, which handles the routing. + + +**Steps to Stream Python Application Logs**: + +1. Click on the **python-app** pod. +1. On the right sidebar, click on **Action**. +1. Click on **Stream Container logs**. + + + + + + +The logs show the daprd container logs with a POST request made to **/neworder** endpoint. + + +

Node.js Application Logs

+ +Follow the same steps above to get the logs for the Node.js application. The logs show API calls made to the state store for persisting order data. + +Here's what can be observed from the logs: + +1. The Dapr sidecar of the Node.js application listens on port 3500 for incoming HTTP requests. +1. The sidecar receives the invocation request sent from the sidecar of the Python app and routes it to the **/neworder** endpoint in the Node.js application. +1. The sidecar makes a POST request to the state store endpoint (/v1.0/state/statestore) to persist the state information in Redis. This endpoint is part of the **Dapr state management API** and is mapped to the configured state store component. + +By analyzing these logs, we gained a deeper understanding of how Dapr's APIs such as the state management API and service invocation API work together to enable service-service communication and efficient management of application state. + +
\ No newline at end of file diff --git a/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/index.mdx b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/index.mdx new file mode 100644 index 000000000000..8b9719ff7cb2 --- /dev/null +++ b/content-learn/mastering-kubernetes-for-engineers/explore-dapr-with-meshery/index.mdx @@ -0,0 +1,36 @@ +--- +docType: "Course" +title: "Course" +description: "Learn how Dapr works by deploying Dapr and sample applications in a Kubernetes Cluster using Meshery" +videos: 0 +lectures: 4 +courseTitle: "Explore Dapr with Meshery" +themeColor: "#00B39F" +order: 4 +cardImage: "../../../src/assets/images/service-mesh-icons/linkerd-white.svg" +meshesYouLearn: + [ + { + imagepath: "../../../src/assets/images/service-mesh-icons/istio.svg", + name: "Istio", + }, + { + imagepath: "../../../src/assets/images/service-mesh-icons/linkerd.svg", + name: "Linkerd", + }, + { + imagepath: "../../../src/collections/integrations/dapr/icons/color/dapr-color.svg", + name: "Dapr", + }, + ] +toc: + [ + "introduction", + "deploy-dapr-control-plane", + "deploy-redis", + "deploy-dapr-statestore-component", + "deploy-python-and-nodejs-application", + "view-application-logs", + "conclusion" + ] +--- \ No newline at end of file diff --git a/content-learn/mastering-kubernetes-for-engineers/index.mdx b/content-learn/mastering-kubernetes-for-engineers/index.mdx index 8d4d3cc692fa..7d2ef284214c 100644 --- a/content-learn/mastering-kubernetes-for-engineers/index.mdx +++ b/content-learn/mastering-kubernetes-for-engineers/index.mdx @@ -4,8 +4,8 @@ description: 'Learn how to configure your Kubernetes clusters and manage the lif order: 4 themeColor: '#3C494F' cardImage: '../../src/assets/images/meshery/icon-only/meshery-logo-light.webp' -courses: 0 -disabled: yes +courses: 1 +disabled: no --- diff --git a/content-learn/mastering-meshery/introduction-to-meshery/index.mdx b/content-learn/mastering-meshery/introduction-to-meshery/index.mdx new file mode 100644 index 000000000000..b9ce50f35812 --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/index.mdx @@ -0,0 +1,24 @@ +--- +docType: "Course" +title: "Course" +description: "Explore Meshery comprehensively in this introductory course. Cover foundational concepts, architectural components, and logical structures. Learn how to create, deploy, and interpret designs. Gain practical insights into configuring Meshery through workspaces and leverage its collaborative attributes to manage your infrastructure." +videos: 0 +lectures: 3 +courseTitle: "Introduction to Meshery" +themeColor: "#00B39F" +order: 1 +cardImage: "../../../src/assets/images/service-mesh-icons/linkerd-white.svg" +toc: + [ + "meshery-concepts", + "deploying-meshery-designs", + "configuring-meshery", + "creating-designs", + "interpreting-meshery-designs", + "reviewing-designs" + ] +--- + + +Introduction to Meshery + diff --git a/content-learn/mastering-meshery/introduction-to-meshery/meshery/configuring-meshery.mdx b/content-learn/mastering-meshery/introduction-to-meshery/meshery/configuring-meshery.mdx new file mode 100644 index 000000000000..091e2d6ebf89 --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/meshery/configuring-meshery.mdx @@ -0,0 +1,227 @@ +--- +docType: "Chapter" +id: "configuring-meshery" +chapterTitle: "Configuring Meshery" +description: "This chapter covers the steps for configuring meshery, including the process of creating teams, workspaces, environments, and connections. It also explains how they associate with each other." +videos: 0 +lectures: 4 +order: 1 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + +import lifecycleImage from "../../../../src/assets/images/learning-path/meshery-configure/lifecycle.png"; +import createTeamImage from "../../../../src/assets/images/learning-path/meshery-configure/create-team.png"; +import createWorkspaceImage from "../../../../src/assets/images/learning-path/meshery-configure/create-workspace.png"; +import confirmWorkspaceImage from "../../../../src/assets/images/learning-path/meshery-configure/confirm-workspace.png"; +import createEnvironmentImage from "../../../../src/assets/images/learning-path/meshery-configure/create-environment.png"; +import confirmEnvironmentImage from "../../../../src/assets/images/learning-path/meshery-configure/confirm-environment.png"; +import envArrowImage from "../../../../src/assets/images/learning-path/meshery-configure/env-arrow.png"; +import envConnectImage from "../../../../src/assets/images/learning-path/meshery-configure/env-connect.png"; +import mesheryEnvImage from "../../../../src/assets/images/learning-path/meshery-configure/meshery-env.png"; +import addClusterImage from "../../../../src/assets/images/learning-path/meshery-configure/add-cluster.png"; +import uploadKubeconfigImage from "../../../../src/assets/images/learning-path/meshery-configure/upload-kubeconfig.png"; +import invalidKubeconfigImage from "../../../../src/assets/images/learning-path/meshery-configure/invalid-kubeconfig.png"; +import connectionListImage from "../../../../src/assets/images/learning-path/meshery-configure/connection-list.png"; +import environmentsDesignsImage from "../../../../src/assets/images/learning-path/meshery-configure/environments-designs.png"; +import associateWithWorkspaceImage from "../../../../src/assets/images/learning-path/meshery-configure/associate-with-workspace.png"; +import confirmAssociatedWorkspaceImage from "../../../../src/assets/images/learning-path/meshery-configure/confirm-associated-workspace.png"; + + + + +

Introduction

+ +Configuring Meshery is foundational to effectively managing and deploying your infrastructure. By understanding what `Teams`, `Workspaces`,`Connections` and `Environments` are and how to set them up, you can effectively manage and monitor your cloud-native infrastructure, as well as collaborate with your team by sharing and organizing your resources. + +**Prerequisite** + +1. Access to Meshery ([Self-Hosted](https://docs.meshery.io/installation) or [Meshery Playground](https://docs.meshery.io/installation/playground)). + +To start configuring Meshery: + +1. Navigate to the left sidebar of Meshery. +1. Click on the **Lifecycle** dropdown and you will see all the menu items we need in this chapter. + + + + + +

Creating Teams

+ +Creating a [Team](https://docs.layer5.io/cloud/identity/teams/) is the first step in configuring Meshery. In Meshery, a team is a user group that manages and shares access to resources such as Workspaces, Designs, and Environments. Teams enable efficient collaboration and permission management, facilitating organized operations within an organization. Teams offer control access to workspaces and to workspace resources such as Environments and Connections. + +Follow the steps below to create a team: + +1. Teams are visible when you visit the [**Identity**](https://meshery.layer5.io/identity/teams) page in Layer5 Cloud. +1. Select **Add Team**, enter a name for your team, add Team Members, and **Create Team**. + + + + + +

Creating Workspaces

+ +Creating a [Workspace](https://docs.layer5.io/cloud/spaces/workspaces/) is an important step in configuring Meshery. A workspace in Meshery is a logical grouping of resources that helps organize and manage your infrastructure more effectively. It is used to separate different projects or environments within your team, enabling better collaboration and resource management. Every user is assigned a default workspace, which can be customized as needed. + +To create a workspace: + +1. Navigate to **Workspaces** under the **Lifecycle** dropdown. + +1. Click **Create**. + +1. Enter a name for your workspace and **Save**. + + + + + +1. Once saved, the new Workspace will be created and displayed on the screen. + + + + + +In the subsequent sections, we will discuss `Environments` and `Designs` shown in the image above. + +

Creating Environments and Associating Connections

+ +[Environments](https://docs.layer5.io/cloud/spaces/environments/) and [Connections](https://docs.meshery.io/concepts/logical/connections) are essential for efficient resource management in Workspaces. Environments logically group related Connections and Credentials, simplifying management and sharing. Connections within Environments become immediately available for use in any assigned Workspaces. + +

Creating an Environment

+ +To create an environment: + +1. Navigate to **Environments** under the **Lifecycle** dropdown. + +1. Click **Create**. + +1. Enter the name of the environment and **Save**. + + + + + +1. Once saved, the new Environment will be created and displayed on the screen. + + + + + +Next We’ll learn how to assign Connections to Environments. + +

Associating Connections with an Environment

+ +Examples of connections managed by Meshery include GitHub integrations, Prometheus connections, Kubernetes clusters, and more. It's essential to assign these connections to an environment and link that environment to your selected workspace. + +To add a connection to an environment: + +1. Click on the **arrows** icon, and a modal displaying your available connections will appear. + + + + + +1. **Available Connections** shows a list of Kubernetes clusters that are currently managed by Meshery. + +1. Select the connection(s) you want to assign. + +1. Use the appropriate arrow icons to manage your selections: + * The first arrow assigns all connections. + * The second arrow assigns only the selected connections. + * The third arrow removes the selected connection. + * The fourth arrow removes all connections. + +1. Click **Save** to confirm your changes. + + + + + +1. The Connections have now been assigned to the Environment. + + + + + +

Navigating the Connections Page

+ +The `Connections` page serves as a central hub for managing the clusters you are connected to. This page provides valuable information and functionality to help you understand and interact with all your connections. + +To access the Connections page, click on **Connections** under the **Lifecycle** dropdown. + +

Adding Cluster Connection

+ +On the Connections page, you can easily add a Kubernetes cluster connection. To do this: + +1. Click the **Add Cluster** button to get started. + + + + + +1. When the modal appears,navigate to the location of your kubeconfig file and upload it to add your cluster as a connection. + + + + + +1. After uploading the kubeconfig file, the modal should indicate that your cluster has been successfully added as a connection. + + If you uploaded an invalid kubeconfig file, you might see an error message statement like the one below. Please ensure you are uploading the correct file with the proper configuration and try again. + + + + + +

Viewing Cluster Connection Details

+ +Each connection has key details associated with it such as: + +1. **Environment**: This displays the environments associated with the connection. Click on the drop-down to add your connection to your Environment and see which Environments the connection is linked to. +2. **Status**: Indicates the currently assigned state and information about what state the connection may or may not transition to. You can learn about [Connection Status](https://docs.meshery.io/concepts/logical/connections#states-and-the-lifecycle-of-connections) +3. If [MeshSync](https://docs.meshery.io/concepts/architecture/meshsync) is actively running in your cluster, clicking the "Flush MeshSync" button will update MeshSync with the latest data, ensuring it matches the current state of your cluster. +This ensures that MeshSync’s data is refreshed and accurately reflects the current state of your cluster’s infrastructure and resources. + + + + + +

Integrating Workspaces with Environments and Designs

+ +You can assign your created Environments to Workspaces, enabling effective collaboration and resource utilization across your team. This feature allows you to organize your Environments based on specific projects, teams, or use cases, making it easier to manage and share resources within your organization. + +Integrating designs with Workspaces enables effective collaboration and sharing of infrastructure configurations across your team. When you assign an Environment containing your designs to a Workspace, team members with access to that Workspace can view, manage, and build upon the shared designs and share feedback. + +

Assigning Environments and Designs to Workspaces

+ +1. Navigate to **Workspaces** under **Lifecycle**. + +1. In the image below, there are two **arrows** for associating `Environments` and `Designs` to Workspaces, respectively. + + + + + +1. Click the appropriate arrow to assign the selected Environments(or Designs) and **Save**. + + + + + +

Confirm Workspace Association

+ +Now, the environment and design are associated with the workspace. You get standardized resource deployment and cross-team collaboration. This enables efficient resource management and tracking, and makes team members more productive. + + + + + +

Conclusion

+ +In this chapter, you learned how to effectively configure Meshery, laying the groundwork for managing your infrastructure and optimizing workload within Kubernetes environments. Starting with the creation of workspaces, you established collaborative environments where teams can organize and deploy resources efficiently. + +You explored the setup of environments, which serve as logical groupings for managing Kubernetes connections and other resources. By adding cluster connections and associating them with environments, you ensured seamless integration and management of your infrastructure components. + +Throughout the configuration process, you encountered various steps to integrate workspaces with environments and designs. This integration not only streamlined resource management but also facilitated standardized deployments across Kubernetes clusters associated with your workspace. + +
diff --git a/content-learn/mastering-meshery/introduction-to-meshery/meshery/creating-designs.mdx b/content-learn/mastering-meshery/introduction-to-meshery/meshery/creating-designs.mdx new file mode 100644 index 000000000000..b18c5ed32c1d --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/meshery/creating-designs.mdx @@ -0,0 +1,192 @@ +--- +docType: "Chapter" +id: "creating-designs" +chapterTitle: "Creating Designs" +description: "This chapter covers the essential steps for creating cloud-native designs in Kanvas. It explores how to start from scratch, import existing infrastructure files, and clone or merge designs from the Layer5 Cloud catalog. Additionally, it provides guidance on integrating GitHub for seamless version control and collaboration, allowing users to manage and configure their cloud-native deployments effectively." +videos: 0 +lectures: 4 +order: 1 +--- + +import exploreImage from "../../../../src/assets/images/learning-path/creating-designs/explore.png"; +import openKanvasImage from "../../../../src/assets/images/learning-path/creating-designs/open-kanvas.png"; +import step1Image from "../../../../src/assets/images/learning-path/creating-designs/step1.png"; +import step2Image from "../../../../src/assets/images/learning-path/creating-designs/step2.png"; +import step3Image from "../../../../src/assets/images/learning-path/creating-designs/step3.png"; +import step4Image from "../../../../src/assets/images/learning-path/creating-designs/step4.png"; +import step5Image from "../../../../src/assets/images/learning-path/creating-designs/step5.png"; +import importDesignImage from "../../../../src/assets/images/learning-path/creating-designs/import-design.png"; +import configuringImportedDesignImage from "../../../../src/assets/images/learning-path/creating-designs/configuring-imported-design.png"; +import mesheryHelmChartImage from "../../../../src/assets/images/learning-path/creating-designs/meshery-helm-chart.png"; +import cloneDesignImage from "../../../../src/assets/images/learning-path/creating-designs/clone-design.png"; +import listOfDesignsImage from "../../../../src/assets/images/learning-path/creating-designs/list-of-designs.png"; +import catalogImage from "../../../../src/assets/images/learning-path/creating-designs/catalog.png"; +import openInPlaygroundImage from "../../../../src/assets/images/learning-path/creating-designs/open-in-playground.png"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + + + +

Introduction

+ +Creating designs in Kanvas is a seamless process that enables you to visualize, configure, and manage cloud-native infrastructure efficiently. This chapter will guide you through various methods of creating designs, whether starting from scratch, importing configuration files like Helm charts or Kubernetes manifests, or utilizing published designs from the Layer5 Cloud catalog. + +

Accessing Designer Mode

+ +1. Log in to [Meshery Playground](https://meshery.layer5.io/). After successfully logging in, you'll land on the dashboard. + +2. In the Cloud Native Playground tile, click **Explore** to navigate to Kanvas. + + + + + +3. On the left sidebar, click the Kanvas icon to open Kanvas in Designer mode. + + + + + +

Starting from Scratch

+ +Think of Designer mode as your blueprint studio. Just like architects use specific tools to design buildings, you use Kanvas to design your cloud-native applications. + +**Step 1: Create And Name Your Design** + +1. Click **New** at the top right of the screen to open a new design canvas. + +2. Give your design a meaningful name, reflecting its purpose or key components. + + + + + +**Step 2: Browsing Available Components** + +Explore the extensive Dock in **Designer** mode, which offers a wide range of Kubernetes and other integration components. + +Think of the Dock as a palette of building blocks for your cloud-native app. Just like selecting different materials for a construction project, you choose components for your app’s architecture. + +Components can be found in the **Dock** at the bottom of the design canvas. + + + + + +**Step 3: Selecting Specific Versions** + +To ensure precision in your design, select the specific version of each component you need. Kanvas supports a variety of versions for different components, allowing you to tailor your design to meet your exact requirements. A compatibility check is conducted, ensuring that selected versions align seamlessly within your design. + +Choosing component versions is similar to selecting software versions for your cloud-native app. It’s like picking the right versions of libraries to ensure your app functions smoothly. + + + + + +**Step 4: Building Complex Cloud Native Deployments** + +With the Designer toolbox at your disposal, effortlessly construct complex cloud-native deployments. Simply drag and drop components onto the Kanvas canvas, arranging and configuring them in a way that suits your architecture. + + + + + +**Step 5: Configuring Each Component** + +Configure your design by adjusting each component through the **Configuration** tab. Click on the component to open up its Configuration tab. Kanvas's intuitive interface allows you to enter settings and parameters directly on the design canvas. As you modify these configurations, your design updates in real-time. Kanvas's auto-sync feature ensures that configuration changes are instantly reflected in the design. + + + + + +**Step 6: Design Actions and Interactions** + +Explore additional design actions by right-clicking on components. Group components together or establish connections between them according to your needs. Kanvas responds in real-time to design actions, providing a fluid and responsive user experience. + +

Starting from existing infrastructure files

+ +When working with Kanvas, you can effortlessly integrate various design files to start building and managing your cloud-native applications. Whether you’re working with Helm charts, Docker Compose files, or Kubernetes manifests, Kanvas provides a unified interface to import these files and visualize your infrastructure setup. This versatility allows you to streamline the design process, ensure consistency, and tailor your cloud-native environments to meet specific needs. + +**Importing a Design** + +1. Click the **Import design** option under the **Designs** tab in Kanvas. + + + + + +2. Enter a name for the design in the **Design File Name** field. + +3. Choose the appropriate **Design Type** for the file you want to import (Helm Chart, Kubernetes, Manifest, etc). + +4. Select your preferred import method: either **URL** or **File Upload**. + + + + + +5. **Example:** Use the Meshery Server Helm chart at [Meshery Helm Chart](https://meshery.github.io/meshery.io/charts/meshery-v0.7.48.tgz). + + + + + +6. **Review and Modify:** You should now have a Kanvas design of the chart. Continue to make any changes if required or deploy it. + +

Cloning a Design

+ +**Steps to Clone a Design from Catalog using Kanvas:** + +1. Switch to Kanvas Designer mode, if not already in it. + +2. In the left navigation panel, click the **“Catalog”** menu tab. + +3. Select a design from the list that appears in the panel. + +4. A modal will pop up requesting you to clone (create a copy of) the design you’ve selected. + + + + + +5. Click **“clone”** and a copy of the design will appear on your Kanvas canvas. You can then configure the design to suit your purposes. + +6. Find your newly cloned design in the list of designs in the left navigation panel. + + + + + +

Github Integrations

+ +Integrating your GitHub account with Meshery unlocks the ability to import files as designs directly from your repositories, enhancing your collaboration and version control processes. This integration allows you to streamline your workflow, ensuring that your design infrastructure is always up-to-date and aligned with your source code. To get started with integrating GitHub into Meshery, follow the comprehensive guide available [here](https://docs.layer5.io/cloud/getting-started/github-integration/). + +After importing your designs, they will appear in the [catalog](https://meshery.layer5.io/catalog). + + + + + +To view the design on the canvas: + +1. Click on the Catalog Card. + +2. Click on **Open in Playground**. This will display the design on the canvas. + + + + + +

Merging Designs

+ +For enhanced collaboration and scalability, merge existing designs into your canvas by dragging and dropping. This feature enables you to consolidate multiple designs, creating a unified and comprehensive view of your infrastructure. + +Kanvas orchestrates the merging process internally, creating a unified design that incorporates components from the dragged designs. Importantly, users do not lose their original designs during the merging process. Kanvas retains records of each design, preserving their individuality. To learn how to merge designs, see [Merging Designs](https://docs.meshery.io/extensions/merging-design). + +

Conclusion

+ +In this chapter, we explored the comprehensive process of creating cloud-native designs using Kanvas. We covered how to start a design from scratch by naming, configuring, and arranging components in Designer mode. We also demonstrated how to import existing infrastructure files, such as Helm charts or Kubernetes manifests, directly into your design canvas for efficient deployment and management. + +Additionally, we learned how to clone existing designs from the Layer5 Cloud catalog and integrate them into our workspace. The chapter also delved into the integration of GitHub, allowing seamless import of design files from your repositories, enabling better collaboration and version control. + +
\ No newline at end of file diff --git a/content-learn/mastering-meshery/introduction-to-meshery/meshery/deploying-meshery-designs.mdx b/content-learn/mastering-meshery/introduction-to-meshery/meshery/deploying-meshery-designs.mdx new file mode 100644 index 000000000000..65344d0a824d --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/meshery/deploying-meshery-designs.mdx @@ -0,0 +1,352 @@ +--- +docType: "Chapter" +id: "deploying-meshery-designs" +chapterTitle: "Deploying Meshery Designs" +description: "This chapter covers the steps for deploying Meshery Designs, including validation, dry-run, environment selection, and deployment. It explains how to carry out these actions, addresses possible errors, and provides remediation strategies. Additionally, it covers how to use the Notification Center for troubleshooting errors and viewing the deployment status." +videos: 0 +lectures: 4 +order: 1 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import performingValidation from "../../../../src/assets/images/learning-path/meshery-deploy/performing-validation.png"; +import successfulValidation from "../../../../src/assets/images/learning-path/meshery-deploy/successful-validation.png"; +import validationError from "../../../../src/assets/images/learning-path/meshery-deploy/validation-error.png"; +import successfulDryRun from "../../../../src/assets/images/learning-path/meshery-deploy/successful-dry-run.png"; +import drInvalidField1 from "../../../../src/assets/images/learning-path/meshery-deploy/dr-invalid-field1.png"; +import drInvalidField2 from "../../../../src/assets/images/learning-path/meshery-deploy/dr-invalid-field2.png"; +import missingField from "../../../../src/assets/images/learning-path/meshery-deploy/missing-field.png"; +import missingResource from "../../../../src/assets/images/learning-path/meshery-deploy/missing-resource.png"; +import addEnv from "../../../../src/assets/images/learning-path/meshery-deploy/add-env.png"; +import createEnv from "../../../../src/assets/images/learning-path/meshery-deploy/create-env.png"; +import assignConn from "../../../../src/assets/images/learning-path/meshery-deploy/assign-conn.png"; +import kubeConn from "../../../../src/assets/images/learning-path/meshery-deploy/kube-conn.png"; +import missingCon from "../../../../src/assets/images/learning-path/meshery-deploy/missing-con.png"; +import envConn from "../../../../src/assets/images/learning-path/meshery-deploy/env-conn.png"; +import connList from "../../../../src/assets/images/learning-path/meshery-deploy/conn-list.png"; +import envError from "../../../../src/assets/images/learning-path/meshery-deploy/env-error.png"; +import successDeploy from "../../../../src/assets/images/learning-path/meshery-deploy/success-deploy.png"; +import missingNs from "../../../../src/assets/images/learning-path/meshery-deploy/missing-ns.png"; +import emptyLs from "../../../../src/assets/images/learning-path/meshery-deploy/empty-ls.png"; +import errorCode from "../../../../src/assets/images/learning-path/meshery-deploy/error-code.png"; +import notification from "../../../../src/assets/images/learning-path/meshery-deploy/notification.png"; +import notificationCenter from "../../../../src/assets/images/learning-path/meshery-deploy/notification-center.png"; +import undeploy from "../../../../src/assets/images/learning-path/meshery-deploy/undeploy.png"; +import action from "../../../../src/assets/images/learning-path/meshery-deploy/action.png"; + + + + +

Introduction

+ +Deploying Meshery designs is a common and essential task for managing your infrastructure and workloads. Having a thorough understanding of this procedure and Meshery’s design deployment behavior is key to ensuring that your component configurations work as intended in a live Kubernetes environment. Meshery’s design deployment process not only attests to the validity of your configuration, but also offers a seamless transition from Designer mode to Visualizer mode, where you can visually inspect your deployment, and begin to manage live-running deployments in your environment. + +Meshery’s deployment process encompasses four steps: validation, dry-run, environment selection, and finally, executing the deployment itself. + +This chapter guides you through each of these four steps. Along the way, you will learn what a successful step looks like, understand common failure scenarios, and go through strategies for troubleshooting and resolving any issues that might arise. Additionally, you will learn about Meshery’s [Notification Center](https://docs.meshery.io/guides/infrastructure-management/notification-management) and how to best use it to your advantage. + +**Prerequisites** + +1. Ensure you have one or more Meshery designs available. + +1. Access to Meshery ([Self-Hosted](https://docs.meshery.io/installation) or [Meshery Playground](https://docs.meshery.io/installation/playground)). + +

Action Button

+ +There are two modes on the Actions button: + +1. Clicking on the word **Actions** presents a set of choices, each labeled with its respective action. Selecting an option opens a modal window, providing detailed guidance. + +1. Clicking on the Action drop-down icon reveals a list of icons. Selecting an icon allows seasoned users to perform actions with a single click, bypassing the modal interaction. + +In this chapter, we focus on utilizing the first option to provide a comprehensive view of the deployment process. + + + + + +

Design Validation

+ +Validation is the first step in deploying designs with Meshery. While optional, it is highly recommended as it helps identify and resolve possible misconfigurations upfront. + +

How Validation Works

+ +Meshery uses static analysis to verify your design. It checks all components within your design and all configured and unconfigured properties of your components against well-defined schemas based on [Meshery Models](https://docs.meshery.io/concepts/logical/models). + +This comprehensive validation ensures that: + +1. The design adheres to the expected structure and format. +1. All components are valid and recognized by Meshery. +1. There are no missing required configurations. + +

Performing Validation

+ +1. To validate your design, navigate to the Actions button at the top of the Design canvas. + +1. Click on the **Validate** Icon. + + + + + + If the validation is successful, you will see a modal displaying the number of components validated and the number of annotations, similar to the one shown below: + + {" "} + + + + + +

Handling Validation Errors

+ +If your design fails validation checks, the modal will indicate the number of errors detected. Each error will provide specific information about the component or annotation that caused the failure. Use this detailed feedback to identify and correct the issues in your design before proceeding with the deployment. + +

Validation Errors

+ +A common validation error is: + +1. **Missing Required Field**: This happens when a required field is not provided. For example, in the image below, the first error indicates that the field ".spec.template.spec.containers.0.env.0" must have a value. + + + + + +To troubleshoot and remediate validation issues: + +1. Click on the error on the modal. +1. This will open the configuration tab of the component that has that error. +1. Fix the configuration using the error details provided. +1. Re-run validation after any significant changes to your design to ensure all issues are resolved. + +The validation process is confined to schema-based checks within Meshery and does not require communication with your target environment. The Dry Run step, however, does involve this communication. Let’s explore the Dry Run step next. + +

Design Dry Run

+ +A dry run in Meshery simulates the deployment of your design in the selected target environment _without_ making any actual changes. This step is highly beneficial as it helps identify potential issues before they occur, ensuring a smoother and more reliable deployment process. + +

Performing Dry Run

+ +1. Navigate to the **Actions** button at the top of the Design canvas. +1. Click on the **Dry Run** icon. +1. Review the results to identify any potential issues. +1. Make necessary adjustments to your configuration based on the feedback provided by the dry run. +1. Re-run the dry run to ensure all issues have been resolved. + + + + + +

Examples of Dry Run Errors

+ +Some examples of dry run errors are: + +1. **Invalid Field Value**: The error message indicates that a field has an invalid value. For instance, in the image below, the fields "spec > ports[0] > port" and "spec > ports[0] > targetPort" have invalid values of 0. These values must be between 1 and 65535, inclusive. + + + + + + + + + +1. **Missing Required Field** + + + + + +1. **Missing Dependencies**: In this case, the error occurs because a Kubernetes [Custom Resource Definition](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/) (CRD) should have been deployed first before attempting to deploy this component. + + To resolve this, ensure that all necessary dependencies, such as CRDs, are deployed before deploying the components that rely on them. + + + + + +

Environment Selection

+ +[Meshery Environments](https://docs.layer5.io/cloud/spaces/environments) are logical groups of [Connections](https://docs.meshery.io/concepts/logical/connections) which include GitHub integrations, Prometheus connections, and Kubernetes Clusters and so on managed by Meshery. To make your Kubernetes connections available for selection, you need to assign them to an environment and link that environment to your current [workspace](https://docs.layer5.io/cloud/spaces/workspaces). _Note: Environments can be assigned to one or more Workspaces._ + +

Adding an Environment During Deployment

+ +During deployment, you will be required to select an environment. + +You can add an environment through the deployment modal by following these steps: + +1. Click on **Add Environments** + + + + + +1. Select **Create** and put in a name for the environment, _e.g.Development_, and **Save**. + + + + + +1. After creating the environment you add connections to the environment, here we want to add a Kubernetes cluster. Click on the **arrows** icon to open the Development Resources modal. + + + + + + **Available Connections** on the left side shows a list of Kubernetes clusters that are currently managed by Meshery. + + + + + + +**_Add Kubernetes Connections:_** If you do not have any **Kubernetes connections** available, refer to this documentation on how to manage your clusters with Meshery: [Managing Kubernetes Clusters with Meshery](https://docs.meshery.io/installation/kubernetes). + +1. Select a cluster, and use the arrow to assign just the selected connections and save. + +

Missing Connections

+ +During the deployment, if a connection has not yet been added to your environment, it will appear as shown below. + + + + + +In this scenario, to add a new environment. + +1. Navigate to the left sidebar of Meshery +1. Click on the **Lifecycle** dropdown and you will see the **Environment** Icon under it +1. Click on it and you can follow the same steps we mentioned above to add a connection to your environment. + +

Selecting an Environment for an Existing Connection

+ +Another way to add a connection to an Environment is by selecting an environment for an existing connection. To do this: + +1. Click on the **Lifecycle** icon to view a list of connections with their attributes, including environments, kind (type of connection), and connection status. + +1. Identify the desired connection. Under the **Environment** section, click the dropdown menu to add and select the environment you want to associate with your connection. + + + + + +

Verifying Kubernetes Connections

+ +The Kubernetes connection icon at the top right corner of the screen shows the list of connected Kubernetes clusters. +Clicking on the icon will invoke an ad hoc connectivity test between your Meshery Server and the specific Kubernetes cluster. Should this check fail, verify the health of your Meshery Operator deployment within that cluster. + + + + + +

Environment Error

+ +If your environment is not properly set up before deployment, you may encounter the error below. + + + + + +To handle this error follow the suitable steps for adding a connection to your environment as previously discussed. + +

Deployment

+ +At this stage, you deploy your resources to your available Kubernetes cluster connection(s) managed by Meshery. +First, ensure the connections to your clusters are established and configured correctly, placing them in the appropriate environments. This ensures you have control over your deployment strategy. + +

Kubernetes Cluster Management using Meshery

+ +Meshery Server [deploys](https://docs.meshery.io/installation) as a single container. Whether the Meshery Server container is deployed in a stand-alone Docker host or inside a Kubernetes cluster, Meshery Server is fully capable of **managing multiple Kubernetes clusters**. For more information on how Meshery Server connects to and continually synchronizes with your Kubernetes cluster(s), see [Meshery Operator](https://docs.meshery.io/concepts/architecture/operator) and [MeshSync](https://docs.meshery.io/concepts/architecture/meshsync). + +Understanding Meshery Operator and Kubernetes Cluster Relationships + **One-to-One Relationship**: There is a one-to-one relationship between a Meshery Operator and a Kubernetes cluster. This means each Meshery Operator is associated with exactly one Kubernetes cluster. This applies whether the cluster is a managed cluster (like the one you’re adding as a connection) or the cluster where the Meshery Server is deployed. + + **Many-to-One Relationship**: There is a many-to-one relationship between Meshery Operator and Meshery Server. Multiple Meshery Operators can be associated with a single Meshery Server. This means a single Meshery Server can manage several Kubernetes clusters through different Meshery Operators. + +In summary, while each Kubernetes cluster has its own Meshery Operator, a single Meshery Server can interact with multiple Kubernetes clusters through these Operators. + +

Available Clusters

+ +**_Playground Users:_** Users of Meshery Playground should see a pre-registered Kubernetes connection, representing the sandbox cluster available with the playground environment. + +You have the option of using the live cluster provided by Meshery Playground or connecting your own Kubernetes cluster using your kubeconfig file. During deployment, these clusters will be available as connections for you to select. + +

Deploying Designs

+ +1. To deploy a design, navigate to the Actions button at the top of the Design canvas. +1. Click on the **Deploy** icon. +1. This opens a modal that will take you through all the steps before the final deployment. +1. Click on **Open In Visualizer** to see the pre-filtered view of the deployed resources in the cluster. +1. Click **Finish**. + + + + + +

Deployment Errors

+ +1. **Missing Namespace**: This error occurs when you attempt to create a Kubernetes resource without specifying a namespace. Kubernetes requires that all resources have an associated namespace. + + + + + +1. **Empty Label Selector**: This error indicates an empty label selector. + + + + + +

Troubleshooting Errors

+ +When reviewing validation, dry run, or deployment issues, you’ll notice specific error codes denoted from time to time. + +As a system, Meshery itemizes different errors that occur and assigns a unique error code to each along with details on how to remediate the issue at hand. + +For the comprehensive list of error codes refer to [Error Code Reference](https://docs.meshery.io/reference/error-codes) in the Meshery documentation. + +If you encounter persistent issues, consider consulting the [Meshery Community forum](https://discuss.layer5.io/c/meshery/5). + + + + + +

Using the Notification Center for Troubleshooting

+ +The Notification Center in Meshery helps manage events during the deployment process. It provides real-time updates and alerts on the status of the deployment. This feature can be particularly useful for troubleshooting, as it: + +1. Displays immediate feedback on the success or failure of each deployment step. + +1. Highlights specific error messages and codes, helping you quickly identify and understand issues. + +1. Offers links to detailed documentation and guides for resolving common problems. + +1. Keeps a log of past notifications, allowing you to track and review previous errors and their resolutions. + + + + + + + + + +By actively monitoring the Notification Center, you can promptly address issues as they arise, ensuring a smoother deployment process. Learn more about [Managing Events with the Notification Center](https://docs.meshery.io/guides/events-management). + +

Undeploy

+ +To undeploy the resources + +1. Navigate to the Actions button at the top of the Meshery Design canvas. +1. Click on the **Undeploy** icon. + + + + + + +

Conclusion

+ +In this chapter, you learned how to effectively deploy Meshery designs, ensuring your resources are deployed in the correct environment. You started by validating your designs to ensure configurations adhere to Kubernetes API specifications and best practices. Next, you did a dry run to simulate deployments without making actual changes. You also explored how to select and configure environments to manage Kubernetes connections seamlessly, and finally, how to deploy resources to your preferred cluster. + +Throughout these steps, you encountered common errors and learned how to address them. During these steps, you learned how to use Meshery's Notification Center to troubleshoot issues, helping you through the deployment process. + +
\ No newline at end of file diff --git a/content-learn/mastering-meshery/introduction-to-meshery/meshery/interpreting-meshery-designs.mdx b/content-learn/mastering-meshery/introduction-to-meshery/meshery/interpreting-meshery-designs.mdx new file mode 100644 index 000000000000..dae91d604bae --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/meshery/interpreting-meshery-designs.mdx @@ -0,0 +1,315 @@ +--- +docType: "Chapter" +id: "interpreting-meshery-designs" +chapterTitle: "Interpreting Meshery Designs" +description: "This chapter delves into the process of understanding the visually expressive language of Meshery designs." +videos: 0 +lectures: 4 +order: 1 +--- +import * as React from "react"; +import MesheryDesignEmbed from "@layer5/meshery-design-embed"; +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import CreateAnnotationGif from "../../../../src/assets/images/learning-path/interpreting-designs/create-annotation.gif"; +import AnnotationExampleGif from "../../../../src/assets/images/learning-path/interpreting-designs/annotations-examples.png"; +import EdgeNetworkGif from "../../../../src/assets/images/learning-path/interpreting-designs/edge-network-relationship.gif" +import CustomizeKubernetesGif from "../../../../src/assets/images/learning-path/interpreting-designs/customize-kubernetes.gif"; +import basicDesign from "../../../../src/assets/images/learning-path/interpreting-designs/basic-meshery-design.png"; +import edgePermissionGif from "../../../../src/assets/images/learning-path/interpreting-designs/edge-permission.gif"; +import Triangles from "../../../../src/assets/images/learning-path/interpreting-designs/triangles.svg"; +import Rectangles from "../../../../src/assets/images/learning-path/interpreting-designs/rectangles.svg"; +import Users from "../../../../src/assets/images/learning-path/interpreting-designs/users.svg"; +import Cylinders from "../../../../src/assets/images/learning-path/interpreting-designs/cylinders.svg"; +import DashedArrows from "../../../../src/assets/images/learning-path/interpreting-designs/dashed_arrow.svg"; +import AnnotationArrow from "../../../../src/assets/images/learning-path/interpreting-designs/annotation-arrow.svg"; +import NetworkEdgeRelationship from "../../../../src/assets/images/learning-path/interpreting-designs/network_edge_relationship.svg"; +import EdgePermissions from "../../../../src/assets/images/learning-path/interpreting-designs/edge_permission.svg"; +import Integrations from "../../../../src/assets/images/learning-path/interpreting-designs/integrations.svg"; + + + +

Introduction

+ +Meshery [Designs](https://docs.meshery.io/concepts/logical/designs) provide a visual blueprint for your infrastructure, showcasing the various components and their relationships. These designs can encompass Kubernetes resources and their relationships, annotations, and the numerous cloud-native and application integrations that Meshery supports. + +In this guide, you will learn how to identify these components and gain a clear understanding of their significance within the design. + +

Meshery Designs and Models

+ +Meshery Designs leverage the power and flexibility of Meshery Models as their foundation. + +Meshery [Models](https://docs.meshery.io/concepts/logical/models) are standardized packages that bundle **components** and characterize their **relationships**. Models provide a structured, reusable, and extensible way to represent infrastructure components and their relationships, going beyond just code. This enables a more flexible and adaptable approach to modeling complex systems. + +

Understanding Meshery Components

+ +A Meshery component is a unit within a Meshery model, essentially representing and defining specific infrastructure elements or resources. They represent and configure specific resources, like network setups, service configurations, and deployment details. + +For example: + +- A `Kubernetes` model will have components that represent resources such as `Deployments`, `Services`, `ConfigMaps` etc +- Similarly, an `AWS EC2` model includes components such as `NAT Gateway`, `Route Table` and `Subnet`. + +These components encapsulate the resources and include their detailed configurations and interaction rules within the larger infrastructure. Not only do they serve as blueprints, but they can also be integrated and deployed to your cluster using Meshery, transforming your designs into reality! + + +

Meshery Design at a Glance

+ + + + + + +The design above shows a simple Meshery Design that consists of Kubernetes components. It specifically illustrates some kubernetes resources that are required to deploy an application to a Kubernetes cluster. + +In the Meshery Design, you can see various Kubernetes components that make up this infrastructure, including `services`, `deployments`, and `custom resources`. The relationships between these components are also clearly depicted through arrows. + +

Meshery Component Representation

+ +Components are represented by various shapes and icons that effectively illustrate their roles in the infrastructure. These icons are designed to intuitively convey their functions, making them easy to identify. Users also have the flexibility to customize these icons to suit their preferences, enabling a more personalized design experience. + +Major Meshery components that can be found in a design include: + +1. **Kubernetes Components**: Resources like `Deployments`, `Services`, and `ConfigMaps`. +1. **Meshery Integration Components**: Configurable components that can be deployed to a cluster, representing integrations with various applications and cloud native infrastructure. +For example, resources such as `Subnet`, `VPC`, and `NAT Gateway` are specific to the AWS integration with Meshery. + +First let's take a look at the Kubernetes Components. + +

Kubernetes Components

+ +Kubernetes components are represented by `blue icons`, distinguishing them from other component types. These icons and shapes visually signify the roles and functions of each Kubernetes component within your infrastructure. + +As you familiarize yourself with Meshery Designs, you'll quickly recognize the unique icons and shapes representing these Kubernetes components. + + +

Basic Concepts of Kubernetes Components in Meshery

+ +Some Kubernetes components can be categorized by their distinct shapes and icons, which help distinguish them based on their roles within the system. + +This makes it intuitive to identify each component’s function, enhancing the user experience when designing and interpreting infrastructure blueprints. + +Let's explore a few of these categories. + +1. **Triangles**: + + + + - **Category**: **Networking and Service Management**. + + - **Description**: Triangular shapes are used for components that manage or interact with networking and service-related functions. This includes defining how services are exposed and connected within the cluster. + + - **Examples**: API Service, Service. + + +1. **Rectangles**: + + + + - **Category**: **Hierarchical and Parent Components** + + - **Description**: In Meshery, hierarchical or parent components are represented as transparent squares, which signify their capacity to contain or organize other resources within the cluster. + + As elements are added, these squares expand into rectangles, visually reinforcing their role in managing and structuring resources. The transparency of these shapes highlights their function as parent components, differentiating them from other types of Kubernetes resources. + + - **Examples**: Namespace, Node, Pod, ReplicaSet, DaemonSet, Horizontal Pod Autoscaler. + +1. **User Icons**: + + + + - **Category**: **Role-based access control (RBAC) components** + + - **Description**: These components are related to user permissions and access management in Kubernetes. + + - **Examples**: ClusterRole, Role, Service Account etc. + +1. **Cylinders**: + + + + - **Category**: **Storage and Stateful Components** + + - **Description**: In Meshery, cylindrical shapes are used to represent components associated with storage and state management in Kubernetes. These shapes symbolize persistent storage and resources that manage or interact with storage systems. + + - **Examples**: CSI Node, CSI Driver, CSI Storage Capacity, Persistent Volume, Persistent Volume Claim (PVC), StatefulSet, Volume Attachment, Storage Class. + +**_Component Shape Guide:_** To learn more about the usage of shapes and why specific shapes were chosen for Kubernetes resources, see the [Component Shape Guide](https://docs.meshery.io/extensions/component-shape-guide). + +**_Kubernetes Components Categories:_** These categories also serve as a guide for users customizing Kubernetes components. By using these established shapes and icons as a reference, you can ensure that your customizations maintain semantic meaning and align with the existing representations, helping to preserve clarity and consistency in your designs. + + +

Arrows in Meshery Designs

+ +Arrows in Meshery designs visually represent relationships between components. Meshery uses two primary arrow styles: one for **edge relationships** and another for **annotations**. These styles come with default meanings assigned by Meshery, providing a clear visual language for understanding component interactions. + +Note that users have the flexibility to **customize** these arrow styles to suit their design preferences. + +**Edge Relationships** + + + +These are used to indicate traffic flow and relationships between components. The dashed lines represent dynamic interactions and data movement, while the arrowheads show the direction of the flow or relationship. + +**Annotations** + + + +These are used to denote annotations or static connections between components. They serve to illustrate fixed relationships or highlight specific details without implying a flow of data or interaction. + +

Examples of Edge Relationships

+ +1. **Edge-Network Relationship**: Represented by a dashed arrow with **port/network protocol**. + + + +- **Dashed arrow**: Indicates that the service is linked to the pod, exposing network access to it through a specified port. +- **Port/Network Protocol**: Indicates the Port exposed by the service and its corresponding network protocol. + +**Creating Edge-Network Relationships Between Kubernetes Components** + + + + + + +1. **Edge-Permission Relationships**: Represented by a dashed arrow with an intermediary component, this type of edge indicates a binding relationship between two components. + +The intermediary component (such as a RoleBinding) connects the two, defining how permissions are assigned. For example, a dashed arrow from a `Role` to a `ServiceAccount` with a `RoleBinding` in the middle shows the connection established by the RoleBinding, which links the specific role to the service account and grants the appropriate permissions. + + + +**Creating Edge-Permission Relationships Between Components** + + + + + + +To see more examples on Edge relationships, See [Relationships](https://docs.meshery.io/concepts/logical/relationships). + + +

Meshery Integration Components

+ +Meshery extends and offers support for numerous [integrations](https://docs.meshery.io/extensibility/integrations) with Cloud native infrastructure and applications. + +In Meshery, these integrated components are distinctly represented by their specific logos as icons and various shapes. These components can be found in `Components` in the dock. + + +
_Example of integration components in Meshery_
+ +Below is a Meshery Design with AWS Components. + + + +

Methods to Identify Components on the Playground Design Canvas

+ +1. **Search on the Dock**: Start by navigating to the Dock at the bottom of the design canvas. To locate Kubernetes components, click on the Kubernetes icon. You can then either search directly for the resource name you are interested in or scroll through to find it. + +1. **Configuration Tab**: Click on a component within the design, and a configuration tab will open. The name of the component will appear at the top of this tab. + +

Annotations

+ +In a Meshery design, annotations can take various forms, such as labels, arrows, sections used to group components, or non-configurable components like plain shapes, AWS icons, GCP icons, and flowchart shapes. + +These annotations are used solely for design purposes within Meshery. While these annotations are not deployable or functional components, they serve to enhance the design by providing additional context and illustrating connections between components. + +Annotations can be created using Meshery's Diagramming tools found in the dock at the bottom of the design canvas. + +

Annotation Examples

+ +1. **Descriptions/labels**: This gives details on components. Can be created using the `Textbox` in the dock. +1. **Arrows**: These are used to show relationships between components. + +1. **Sections**: This can be used to visually group components into sections to have a better understanding of your infrastructure. This is created using `Sections` in the dock. + +1. **Shapes**: These include the plain shapes, AWS icons, GCP icons, and flowchart shapes. They can be founf in `Shapes` in the dock. These are non-configurable and are used solely for design purposes. + +1. **Images**: Images can be added to the design to represent components, logos, or any visual aid that supports understanding the architecture. + + + + + + +The design below includes annotations such as sections, images, arrows, and various shapes. + + + + +

Customizing Components and Annotation

+ +While default shapes, colors, and icons are provided for components and annotations, you have the flexibility to customize these components to better suit your design needs. + +**Customizing Kubernetes Components** + + + + + + +**Creating and Customizing Arrow Annotations** + + + + + + +**_Edge Style Guide:_** To learn more about the available arrow edge styles, See Edge Sytle Guide(https://docs.meshery.io/extensions/edges-shape-guide). + +Every other Component and Annotation that has been discussed can be customized using the method shown above. + +

Conclusion

+ +In this guide, you’ve explored the diverse components within Meshery designs and learned to interpret their various meanings. You’ve gained insights into identifying Kubernetes components and other integrations supported by Meshery, understanding their unique roles and functions. + +We’ve also covered how to differentiate between functional components, their relationships, and annotations within your designs. By recognizing these elements and their visual representations, you can better understand and manage your Meshery designs. This knowledge will enable you to create more effective and insightful designs, enhancing your ability to visualize and manage complex systems. + +
\ No newline at end of file diff --git a/content-learn/mastering-meshery/introduction-to-meshery/meshery/meshery-concepts.mdx b/content-learn/mastering-meshery/introduction-to-meshery/meshery/meshery-concepts.mdx new file mode 100644 index 000000000000..f5d354dbb6d4 --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/meshery/meshery-concepts.mdx @@ -0,0 +1,60 @@ +--- +docType: "Chapter" +id: "meshery-concepts" +chapterTitle: "Meshery Concepts" +description: "This chapter delves into the fundamental concepts of Meshery, explaining its purpose, and the architectural and logical components that form its foundation." +videos: 0 +lectures: 4 +order: 1 +--- + +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; + + + + +

What is Meshery?

+ +Meshery is a self-service engineering platform that enables collaborative design and operation of cloud and cloud-native infrastructure. It's a versatile tool designed to help engineers manage and operate their infrastructure visually, collaboratively, and confidently. Whether you are a platform engineer, a site reliability engineer, or part of a DevSecOps team, Meshery has something to offer. + +

Meshery’s Purpose

+ +Meshery's primary purpose is to facilitate the collaborative design, operation, and management of cloud and cloud-native infrastructure. By providing a unified platform that integrates with various tools and technologies, Meshery aims to streamline infrastructure management tasks for engineers. Its goals include: + +1. **Enhancing Collaboration:** Meshery allows teams of engineers to work together more effectively by providing a visual and intuitive interface for managing infrastructure. +2. **Simplifying Complexity:** It abstracts the complexity of managing multiple Kubernetes clusters and cloud-native environments, making it easier for engineers to deploy, monitor, and manage applications. +3. **Ensuring Extensibility:** As an open-source project, Meshery is highly extensible, allowing users to customize and extend its functionality to meet their specific needs. +4. **Improving Performance Management:** Meshery provides tools for performance analysis, helping teams understand and optimize the performance of their applications and infrastructure. +5. **Promoting Best Practices:** Through its various features and capabilities, Meshery encourages the adoption of best practices in cloud-native infrastructure management, such as using standardized designs and patterns. + +Meshery is designed to be a versatile and powerful tool that addresses the modern needs of infrastructure management in cloud-native environments, making it easier for engineers to manage their infrastructure with confidence and efficiency. + +

Architectural Components

+ +Architectural components in Meshery are the physical and functional building blocks that enable the platform to operate and manage infrastructure. These include elements like the Meshery Server, Adapters, MeshSync, Broker, and Operator. Each architectural component has a distinct function, such as facilitating communication between cluster components (Broker), managing the lifecycle of deployed components (Operator), or synchronizing state information (MeshSync). Together, these components form a cohesive system that ensures Meshery can effectively integrate with various tools and environments, providing a robust and scalable infrastructure management solution. + +* [Adapters](https://docs.meshery.io/concepts/architecture/adapters) \- Adapters extend Meshery's management capabilities in any number of ways, including lifecycle, configuration, performance, governance, identity... +* [Architecture](https://docs.meshery.io/concepts/architecture) \- overview of different individual components of Meshery architecture and how they interact as a system. +* [Broker](https://docs.meshery.io/concepts/architecture/broker) \- Meshery broker component facilitates data streaming between kubernetes cluster components and outside world. +* [Catalog](https://docs.meshery.io/concepts/catalog) \- Browsing and using cloud native patterns +* [Database](https://docs.meshery.io/concepts/architecture/database) \- Meshery offers support for internal caching with the help of file databases. This has been implemented with several libraries that supports different kinds of data formats. +* [MeshSync](https://docs.meshery.io/concepts/architecture/meshsync) \- Meshery offers support for Kubernetes cluster and cloud state synchronization with the help of MeshSync. +* [Operator](https://docs.meshery.io/concepts/architecture/operator) \- Meshery Operator controls and manages the lifecycle of components deployed inside a kubernetes cluster + +

Logical Components

+ +Logical components in Meshery refer to the conceptual elements that define and organize how infrastructure is managed and operated. These include components like Designs, Patterns, Policies, Environments, Models, and Workspaces. Each logical component has a specific role, such as defining the desired state of infrastructure (Designs), grouping resources (Environments), or enforcing governance rules (Policies). Logical components help structure the management process, making it more systematic and efficient by providing a clear framework for configuration, operation, and collaboration. + +* [Components](https://docs.meshery.io/concepts/logical/components) \- Meshery Components identify and characterize infrastructure under management. +* [Connections](https://docs.meshery.io/concepts/logical/connections) \- Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are managed by a state machine and used within one or more Environments. +* [Credentials](https://docs.meshery.io/concepts/logical/credentials) \- Meshery uses one or more Credentials when authenticating to a managed or unmanaged Connection. +* [Designs](https://docs.meshery.io/concepts/logical/designs) \- Meshery Designs are descriptive, declarative characterizations of how your Kubernetes infrastructure should be configured. +* [Environments](https://docs.meshery.io/concepts/logical/environments) \- Environments are how you organize your deployment targets (whether on-premises servers or cloud services) into resource groups. +* [Models](https://docs.meshery.io/concepts/logical/models) \- Meshery uses a set of resource models to define concrete boundaries to ensure extensible and sustainable management. +* [Patterns](https://docs.meshery.io/concepts/logical/patterns) \- Meshery Patterns are descriptive, declarative characterizations of how your Kubernetes infrastructure should be configured. +* [Policies](https://docs.meshery.io/concepts/logical/policies) \- Meshery Policies enable you with a broad set of controls and governance of the behavior of systems under Meshery's management. +* [Registry](https://docs.meshery.io/concepts/logical/registry) \- Meshery Registry is a database acting as the central repository for all capabilities known to Meshery. These capabilities encompass various entities, including models, components, relationships, and policies. +* [Relationships](https://docs.meshery.io/concepts/logical/relationships) \- Meshery Relationships identify and facilitate genealogy between Components. +* [Workspaces](https://docs.meshery.io/concepts/logical/workspaces) \- Meshery Workspaces act as a central collaboration point for teams. + +
\ No newline at end of file diff --git a/content-learn/mastering-meshery/introduction-to-meshery/meshery/reviewing-designs.mdx b/content-learn/mastering-meshery/introduction-to-meshery/meshery/reviewing-designs.mdx new file mode 100644 index 000000000000..b6c72bdf31b8 --- /dev/null +++ b/content-learn/mastering-meshery/introduction-to-meshery/meshery/reviewing-designs.mdx @@ -0,0 +1,245 @@ +--- +docType: "Chapter" +id: "reviewing-designs" +chapterTitle: "Reviewing Designs" +description: "This chapter explores the essential aspects of reviewing designs in Kanvas, covering the lifecycle of design reviews, the use of comments and annotations, and the best practices for providing constructive feedback. It also details how to effectively collaborate with your team to ensure thorough evaluations and high-quality design outcomes." +videos: 0 +lectures: 4 +order: 1 +--- +import { ChapterStyle } from "../../../../src/components/Learn-Components/Chapters-Style/chapters.style.js"; +import commentingViaDock from "../../../../src/assets/images/learning-path/reviewing-designs/commenting-via-dock.png"; +import commentingViaMenu from "../../../../src/assets/images/learning-path/reviewing-designs/commenting-via-menu.png"; +import commentsAsDesignTool from "../../../../src/assets/images/learning-path/reviewing-designs/comments-as-design-tool.png"; +import comments from "../../../../src/assets/images/learning-path/reviewing-designs/comments.png"; +import commentHistory from "../../../../src/assets/images/learning-path/reviewing-designs/comment-history.png"; +import reopeningComments from "../../../../src/assets/images/learning-path/reviewing-designs/reopening-comments.png"; +import pinningComments from "../../../../src/assets/images/learning-path/reviewing-designs/pinning-comments.png"; +import lockingComments from "../../../../src/assets/images/learning-path/reviewing-designs/locking-comments.png"; +import annotations from "../../../../src/assets/images/learning-path/reviewing-designs/annotations.png"; +import whiteboarding from "../../../../src/assets/images/learning-path/reviewing-designs/whiteboarding.png"; +import whiteboardAccess from "../../../../src/assets/images/learning-path/reviewing-designs/whiteboard-access.png"; +import shapeAnnotation from "../../../../src/assets/images/learning-path/reviewing-designs/shape-annotation.png"; +import textAnnotation from "../../../../src/assets/images/learning-path/reviewing-designs/text-annotation.png"; +import tooltipAnnotation from "../../../../src/assets/images/learning-path/reviewing-designs/tooltip-annotation.png"; + + + +

Introduction

+ +When working with Kanvas’ Designer Mode, collaboration is key. Design reviews allow team members to examine, provide feedback, and approve design proposals, ensuring that all components are thoroughly evaluated and potential issues are identified early. This process leads to more robust designs, informed decision-making, and a unified understanding among team members, ultimately contributing to the success of the project. + +

Lifecycle of Design Reviews

+ +

Submitting Designs

+ +This initial step involves preparing your design to be reviewed by your peers. Start by submitting your design for review, ensuring all components are accurately placed and configured. It is crucial to double-check that every aspect of the design is ready for feedback. In the context of Kanvas, you can submit designs for review by: + +* **Ensuring Collaboration is Enabled:** Make sure that [collaboration](https://docs.layer5.io/kanvas/designer/share-resource/#granting-access-for-teams-upcoming-feature) mode is turned on within Kanvas so that your team members can access and review the design. +* **Having the Design in the Same Workspace/Team:** Place your design in a [workspace or team](https://docs.layer5.io/kanvas/designer/share-resource/#granting-access-for-teams-upcoming-feature) where other members have access. This ensures that all relevant team members can easily find and review the design. Kanvas allows you to manage design access permissions and visibility, ensuring that only the intended collaborators can view and edit the design. +* **Sharing the Design Link:** Generate and share a link to your design with your team members. This direct approach ensures that anyone with the link can access the design immediately. Ensure that the designs’s [visibility status](https://docs.layer5.io/kanvas/designer/share-resource/#visibility) is set appropriately (Private, Public, or Published) based on who you want to have access. + 1. **Private:** Only you, the creator, and the user or team with granted access permission can view and edit the design. + 2. **Public:** Anyone within your organization can view, comment on, and edit the design. You can still restrict permissions for individual users or teams. + 3. **Published:** The design becomes discoverable to other Meshery users, allowing them to view, download, and clone the design. + +By following these steps, you can effectively submit your designs for review within Kanvas, ensuring that they are accessible to the right team members and ready for collaborative feedback. + +

Reviewing Designs

+ +Team members can review designs using comments or annotations. + +

Design Reviews with Comments

+ +You can add comments in two convenient ways: + +* **Commenting via the Dock:** Click on the comment icon in the dock to create a new comment, or drag and drop it anywhere on the canvas to position it. + + + + + + +* **Commenting via Context Menu in Canvas:"** Right-click anywhere on your canvas and select **“Add Comment Here”** from the context menu or use the shortcut Ctrl + M (Command + M for Mac users). This allows for swift comment placement exactly where you need it. + + + + + +

Tips for using Comments as a Design Review Tool

+ + + + + +* **Initiating Threads:** You can initiate a comment thread by adding a comment. Your comment may request a design review or provide feedback on a design. Team members can reply directly to comments, creating a structured dialogue around each point of feedback for easy referencing. +* **Utilize Mentions:** Easily draw the attention of relevant team members by tagging them in your comment. To activate this, type @ in the comment box, and a list of your team members will appear. Select who you want to mention. This ensures that the right people are notified and can contribute to the discussion. +* **Enable Email Notifications:** Customize your [notification preferences](https://docs.layer5.io/cloud/identity/users/notification-preferences/) to receive emails for comments on your design. When this is enabled, you’ll be notified when comments are made on your design, you’re mentioned in a comment, or someone adds a comment to a thread you’ve previously engaged with. +* **Mute Comment Notifications:** You can also customize your notification preferences to mute email notifications for comments on your design. This can be useful if you want to temporarily pause notifications or reduce email clutter. You’ll still have access to all comments directly within Kanvas. + + + + + +* **Comment on Specific Elements:** Place comments to specific components, whether it’s a shape, text, or an entire component. This specificity ensures that feedback is targeted and directly related to the part of the design under discussion. + +

Resolving Comments

+ +Once the feedback has been addressed, you can mark the comment as resolved. For resolving comments, simply right click on the comment component and select the **“resolve”** comment action. It closes the comment thread and signifies that the conversation around that feedback has concluded. It helps keep the review process organized and ensures that completed discussions are neatly archived. + +**View Comment History** + +Even after comments are resolved, you can view the history to understand the decisions and discussions that took place. This feature is beneficial for future reference and maintaining a clear record of the review process. + + + + + +

Reopening Comments

+ +After a comment has been resolved, there might be situations where you need to reopen the discussion. Unresolving a comment allows you to reinitiate conversations, address additional concerns, or make further changes. + +To unresolve a comment: +* Click on the comment icon at the top right of the design canvas. +* Select "resolved" from the dropdown menu. + +This will show the resolved conversations which can be reopened. This flexibility ensures that ongoing iterations and continuous improvements can be managed effectively. + + + + + +By following these steps, you can create a thorough and collaborative review process within Kanvas, ensuring that your designs are vetted comprehensively and efficiently. + +

Pinning and Locking Comments in Kanvas

+ +1.

Pinning of Comments

+ + + + + +This image illustrates the feature of pinning comments to specific nodes within Kanvas. This functionality allows users to attach a comment to a particular node, ensuring that the comment remains associated with the node regardless of its position within the design. This is particularly useful for providing context-specific feedback or instructions that should always be visible alongside the relevant component. You can take a comment icon near to a node and it automatically gets pinned to that node. + +**How It Works:** + + * **Attach Comments:** When a comment is pinned to a component, it stays linked to that node. This means that no matter where the node is moved within the design, the comment will follow. + * **Contextual Feedback:** This feature helps in maintaining the relevance of the feedback, as the comments are always displayed in relation to the specific node they refer to. + * **Collaborative Consistency:** Ensures that all collaborators see the comments in the correct context, facilitating clearer communication and understanding. + +2.

Locking Comments

+ + + + + +This image shows the locking and unlocking interface for nodes in Kanvas. Right-click on the node to access the “lock” option. Locking a comment ensures that it remains fixed in its position, even if the overall design pattern changes. This is useful for highlighting and securing key components of the design that should not be altered or moved during collaborative sessions. + +**How It Works:** + + * **Lock Comments:** By locking a comment, you ensure that it stays in place. This can be particularly useful for critical components that form the backbone of your design. + * **Shared Among Collaborators:** When a comment is locked, collaborators working on that design will be unable to move or reposition the locked component. This is an excellent opportunity to brainstorm suggestions for easily identifying locked components. + * **Unlocking Comments:** Comments can be unlocked when necessary, allowing for flexibility in design adjustments. This can be done through the radial menu shown in the image, which provides options for copying, resetting styles, duplicating, deleting, and unlocking nodes. + +

Design Reviews with Annotations

+ +Annotations in Kanvas are a powerful way to add detailed notes and explanations directly onto your design canvas. They are crucial for effective communication, detailed feedback, and collaborative design processes. Here’s how you can effectively use annotations to enhance collaboration and streamline design reviews. + + + + + +**Whiteboard in Kanvas** + +The whiteboarding feature in Kanvas introduces versatile, freestyle drawing capabilities. Enabling the whiteboard feature augments your ability to diagram with a suite of predefined shapes, and pen and pencil annotations, allowing you full freedom of expression in your engineering diagrams. Annotations are a key part of this feature, enabling you to add contextual information directly to your designs. + + + + + +**Key Functionalities** + +1. **Drawing Tools Integration:** + + * The whiteboarding feature incorporates a comprehensive set of drawing tools resembling popular whiteboard applications. + * It enables you to draw shapes, group components, annotate, and highlight specific elements within the design canvas to help convey complex ideas clearly + +2. **Real-time Collaboration:** + + * Facilitates simultaneous collaboration among multiple users within the tool. + * Identification of collaborators through avatars ensures clarity in collaborative sessions. + * Supports live editing and instant visualization of changes made by collaborators, ensuring everyone is on the same page. + +3. **Non-Invasive Annotations:** Annotations, shapes, or drawings created within the tool remain separate visual aids, not altering the actual infrastructure components. This means you can annotate freely without worrying about modifying the core design elements. + +4. **Undo/Redo Functionalities:** Allows for design exploration without permanent modifications, enabling you to experiment with different ideas safely. + +**Enabling the Whiteboarding Feature** + +If the whiteboarding feature is not already enabled, follow these steps to access it within Kanvas: + +1. Right-click to open the context menu or Click on the settings icon at the top right of the design canvas. +2. Select Options to access the Preferences menu. +3. Enable Whiteboard. +4. A dock will now appear at the bottom of the canvas, providing access to the whiteboard tools. +5. Experiment with drawing, annotation, and collaboration functionalities available in the whiteboard toolbar. +6. Share access with collaborators or team members to engage in real-time collaborative drawing sessions. + + + + + +**Customizing Annotations and Shapes** + +Customizing annotations and shapes is crucial in design reviews as it enhances clarity and communication within the team. By tailoring annotations and shapes to fit specific needs, team members can highlight important aspects, provide detailed feedback, and visually differentiate components within the design. This level of customization ensures that feedback is clear, actionable, and directly tied to the relevant parts of the design, making the review process more efficient and effective. + +1. **Shape Customization:** Shapes within the canvas offer flexibility. Select any shape to access a tooltip with options to resize, reshape, and change colors. This allows for precise adjustments similar to popular design software. + + + + + +2. **Text Annotation Customization:** Text annotations come with various options. Customize fonts, sizes, alignments, and styles easily. Text boxes resize for seamless integration with the canvas. + + + + + +3. **Interactive Tooltip Interface:** The tooltip is your gateway to customization. It’s simple and intuitive, offering a range of editing options upon selection. It’s designed for easy navigation, mirroring popular design software. + + + + + +4. **Advanced Customization Features:** + * Manage layers and group elements to organize your design better. These advanced tools ensure collaborative work while preserving design integrity. + * Lines and edges are easily manipulated. Adjust thickness, style, and endpoints effortlessly. Drag line segments to create bends or curves, adding detail to visual representations. + +5. **Consistent Functionality:** The customization tools apply uniformly to all annotation types. Changes made within the tooltip reflect instantly on the canvas, facilitating real-time collaboration. + +**Annotation Use Cases in Design Reviews** + +* **Team Collaboration:** Multiple users collaborating on infrastructure designs, adding annotations and insights simultaneously. This helps in gathering diverse perspectives and improving the design quality. + +* **Educational Context:** Instructors and students using the tool for visualizing concepts or workflows in remote learning environments. Annotations can be used to highlight key points and provide additional explanations. + +* **Documenting Design Decisions:** Annotations help in documenting design decisions and ensuring all stakeholders are aligned. + +Annotations in Kanvas’s Designer Mode are an invaluable tool for enhancing collaboration and streamlining the design review process. By integrating versatile drawing tools, enabling real-time collaboration, and preserving the integrity of the infrastructure, annotations provide a powerful way to communicate, document, and iterate on design ideas. Whether you are working in a team, educating others, or planning complex projects, using annotations effectively can significantly improve the quality and clarity of your designs. + +**Best Practices for Effective Design Reviews** + +* **Provide clear and actionable feedback** + Provide specific feedbackthat the designer can act on. Vague comments can lead to misunderstandings and delays in the design process. Support your feedback with examples or references. This can help clarify your point and provide the designer with tangible suggestions for improvement. + +* **Balance positive and contructive feedback** + Frame feedback in a constructive manner, focusing on how things can be improved rather than just pointing out flaws. Acknowledge what works well in the design before delving into areas that need improvement. This helps maintain a positive and collaborative atmosphere. + +* **Regularly check and respond to comments** + Stay engaged in the review process. Regularly check and respond to comments to keep the conversation alive and ensure a smooth workflow. + +* **Prioritize feedback** + Highlight the most critical feedback first. This ensures that the designer focuses on the most important aspects for improvement. + +In conclusion, effective design reviews in Kanvas' Designer Mode are essential for fostering collaboration, ensuring clear communication, and achieving high-quality outcomes. By leveraging features like comments, annotations, and customization, teams can provide actionable feedback, maintain design integrity, and align on project goals. Following best practices for feedback and utilizing the full range of tools Kanvas offers will streamline the review process, leading to more robust and well-documented designs. + +
\ No newline at end of file diff --git a/gatsby-node.js b/gatsby-node.js index cc5cf9aa3892..98b765ac36b0 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -863,13 +863,14 @@ const createCoursesListPage = ({ envCreatePage, node }) => { }; const createCourseOverviewPage = ({ envCreatePage, node }) => { - const { learnpath, slug, course, pageType, permalink } = node.fields; + const { learnpath, slug, course, pageType, permalink,section } = node.fields; envCreatePage({ path: `${slug}`, component: path.resolve("src/templates/course-overview.js"), context: { learnpath, + section, slug, course, pageType, diff --git a/src/assets/images/learning-path/creating-designs/catalog.png b/src/assets/images/learning-path/creating-designs/catalog.png new file mode 100644 index 000000000000..ea24a1f49fa0 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/catalog.png differ diff --git a/src/assets/images/learning-path/creating-designs/clone-design.png b/src/assets/images/learning-path/creating-designs/clone-design.png new file mode 100644 index 000000000000..a57b35c0c12a Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/clone-design.png differ diff --git a/src/assets/images/learning-path/creating-designs/configuring-imported-design.png b/src/assets/images/learning-path/creating-designs/configuring-imported-design.png new file mode 100644 index 000000000000..928982dadbd6 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/configuring-imported-design.png differ diff --git a/src/assets/images/learning-path/creating-designs/explore.png b/src/assets/images/learning-path/creating-designs/explore.png new file mode 100644 index 000000000000..0767737c2a6a Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/explore.png differ diff --git a/src/assets/images/learning-path/creating-designs/import-design.png b/src/assets/images/learning-path/creating-designs/import-design.png new file mode 100644 index 000000000000..9f0339590135 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/import-design.png differ diff --git a/src/assets/images/learning-path/creating-designs/list-of-designs.png b/src/assets/images/learning-path/creating-designs/list-of-designs.png new file mode 100644 index 000000000000..be24c4417aac Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/list-of-designs.png differ diff --git a/src/assets/images/learning-path/creating-designs/meshery-helm-chart.png b/src/assets/images/learning-path/creating-designs/meshery-helm-chart.png new file mode 100644 index 000000000000..588c10ad6f89 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/meshery-helm-chart.png differ diff --git a/src/assets/images/learning-path/creating-designs/open-in-playground.png b/src/assets/images/learning-path/creating-designs/open-in-playground.png new file mode 100644 index 000000000000..23fa3cefd9ee Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/open-in-playground.png differ diff --git a/src/assets/images/learning-path/creating-designs/open-kanvas.png b/src/assets/images/learning-path/creating-designs/open-kanvas.png new file mode 100644 index 000000000000..2861f11e64f9 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/open-kanvas.png differ diff --git a/src/assets/images/learning-path/creating-designs/step1.png b/src/assets/images/learning-path/creating-designs/step1.png new file mode 100644 index 000000000000..e175d136706b Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/step1.png differ diff --git a/src/assets/images/learning-path/creating-designs/step2.png b/src/assets/images/learning-path/creating-designs/step2.png new file mode 100644 index 000000000000..458591b795e4 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/step2.png differ diff --git a/src/assets/images/learning-path/creating-designs/step3.png b/src/assets/images/learning-path/creating-designs/step3.png new file mode 100644 index 000000000000..ea5eef1c15c8 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/step3.png differ diff --git a/src/assets/images/learning-path/creating-designs/step4.png b/src/assets/images/learning-path/creating-designs/step4.png new file mode 100644 index 000000000000..067fe6b35632 Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/step4.png differ diff --git a/src/assets/images/learning-path/creating-designs/step5.png b/src/assets/images/learning-path/creating-designs/step5.png new file mode 100644 index 000000000000..54ceccc0b0bb Binary files /dev/null and b/src/assets/images/learning-path/creating-designs/step5.png differ diff --git a/src/assets/images/learning-path/dapr/architecture.png b/src/assets/images/learning-path/dapr/architecture.png new file mode 100644 index 000000000000..5f1908f4dbe3 Binary files /dev/null and b/src/assets/images/learning-path/dapr/architecture.png differ diff --git a/src/assets/images/learning-path/dapr/dapr-helm.png b/src/assets/images/learning-path/dapr/dapr-helm.png new file mode 100644 index 000000000000..048df3d1939f Binary files /dev/null and b/src/assets/images/learning-path/dapr/dapr-helm.png differ diff --git a/src/assets/images/learning-path/dapr/dapr-visualizer.png b/src/assets/images/learning-path/dapr/dapr-visualizer.png new file mode 100644 index 000000000000..92ad4bf56e88 Binary files /dev/null and b/src/assets/images/learning-path/dapr/dapr-visualizer.png differ diff --git a/src/assets/images/learning-path/dapr/drag-component.png b/src/assets/images/learning-path/dapr/drag-component.png new file mode 100644 index 000000000000..8c1ec6280b77 Binary files /dev/null and b/src/assets/images/learning-path/dapr/drag-component.png differ diff --git a/src/assets/images/learning-path/dapr/filter-node-python.png b/src/assets/images/learning-path/dapr/filter-node-python.png new file mode 100644 index 000000000000..1e7224fdddd1 Binary files /dev/null and b/src/assets/images/learning-path/dapr/filter-node-python.png differ diff --git a/src/assets/images/learning-path/dapr/grouped.png b/src/assets/images/learning-path/dapr/grouped.png new file mode 100644 index 000000000000..71c96b575bfa Binary files /dev/null and b/src/assets/images/learning-path/dapr/grouped.png differ diff --git a/src/assets/images/learning-path/dapr/metadata.png b/src/assets/images/learning-path/dapr/metadata.png new file mode 100644 index 000000000000..e865a90e4a57 Binary files /dev/null and b/src/assets/images/learning-path/dapr/metadata.png differ diff --git a/src/assets/images/learning-path/dapr/redis-dapr.png b/src/assets/images/learning-path/dapr/redis-dapr.png new file mode 100644 index 000000000000..c7970e102116 Binary files /dev/null and b/src/assets/images/learning-path/dapr/redis-dapr.png differ diff --git a/src/assets/images/learning-path/dapr/relationship.png b/src/assets/images/learning-path/dapr/relationship.png new file mode 100644 index 000000000000..b531b4b78bec Binary files /dev/null and b/src/assets/images/learning-path/dapr/relationship.png differ diff --git a/src/assets/images/learning-path/dapr/state-store.png b/src/assets/images/learning-path/dapr/state-store.png new file mode 100644 index 000000000000..70640be3c5a2 Binary files /dev/null and b/src/assets/images/learning-path/dapr/state-store.png differ diff --git a/src/assets/images/learning-path/dapr/stream.png b/src/assets/images/learning-path/dapr/stream.png new file mode 100644 index 000000000000..7b4a1eed7077 Binary files /dev/null and b/src/assets/images/learning-path/dapr/stream.png differ diff --git a/src/assets/images/learning-path/edge-stack/es1.png b/src/assets/images/learning-path/edge-stack/es1.png new file mode 100644 index 000000000000..a59054f5b919 Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es1.png differ diff --git a/src/assets/images/learning-path/edge-stack/es10.png b/src/assets/images/learning-path/edge-stack/es10.png new file mode 100644 index 000000000000..a06daca57f7e Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es10.png differ diff --git a/src/assets/images/learning-path/edge-stack/es2.png b/src/assets/images/learning-path/edge-stack/es2.png new file mode 100644 index 000000000000..ed4fa9a55331 Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es2.png differ diff --git a/src/assets/images/learning-path/edge-stack/es3.png b/src/assets/images/learning-path/edge-stack/es3.png new file mode 100644 index 000000000000..c81327060cb6 Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es3.png differ diff --git a/src/assets/images/learning-path/edge-stack/es4.png b/src/assets/images/learning-path/edge-stack/es4.png new file mode 100644 index 000000000000..c595051b71b1 Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es4.png differ diff --git a/src/assets/images/learning-path/edge-stack/es5.png b/src/assets/images/learning-path/edge-stack/es5.png new file mode 100644 index 000000000000..6d8ff5e01c03 Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es5.png differ diff --git a/src/assets/images/learning-path/edge-stack/es6.png b/src/assets/images/learning-path/edge-stack/es6.png new file mode 100644 index 000000000000..6578ea9a80c7 Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es6.png differ diff --git a/src/assets/images/learning-path/edge-stack/es8.png b/src/assets/images/learning-path/edge-stack/es8.png new file mode 100644 index 000000000000..e0fadc2e6fab Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es8.png differ diff --git a/src/assets/images/learning-path/edge-stack/es9.png b/src/assets/images/learning-path/edge-stack/es9.png new file mode 100644 index 000000000000..c4043d14ec2f Binary files /dev/null and b/src/assets/images/learning-path/edge-stack/es9.png differ diff --git a/src/assets/images/learning-path/embed-test/embedded-design-awscomplex-copy.js b/src/assets/images/learning-path/embed-test/embedded-design-awscomplex-copy.js new file mode 100644 index 000000000000..9998fffc165c --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-awscomplex-copy.js @@ -0,0 +1,1699 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + label: "AWS Athena", + type: "AWS Athena", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Athena", + services: { + "ad1c7db7-68ba-4d50-b2de-c33036fc9368": { + settings: { label: "Amazon Anthena", name: "AWS Athena" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "18e451c9-3700-453c-abbc-89f504499443", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "ad1c7db7-68ba-4d50-b2de-c33036fc9368" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + label: "AWS Athena", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#8C4FFF", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 15 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws athena-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws athena-white.svg" + }, + position: { posX: 738.2114583703113, posY: 236.65332668256434 }, + whiteboardData: {} + } + }, + type: "AWS Athena" + } + } + } + }, + position: { x: 738.2114583703113, y: 236.65332668256434 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6acc7ded-abfe-4425-828f-01673da430bd", + label: "AWS Lambda", + type: "AWS Lambda", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Lambda", + services: { + "6acc7ded-abfe-4425-828f-01673da430bd": { + settings: { label: "Lambda Cost Function", name: "AWS Lambda" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "18e451c9-3700-453c-abbc-89f504499443", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "ad1c7db7-68ba-4d50-b2de-c33036fc9368" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6acc7ded-abfe-4425-828f-01673da430bd", + label: "AWS Lambda", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#ED7100", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "#ed7100", + "border-color": "#ca6907", + "border-style": "dotted", + "z-index": 17 + }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws lambda-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws lambda-white.svg" + }, + position: { posX: 587.4324475314369, posY: 235.1751190101363 }, + whiteboardData: {} + } + }, + type: "AWS Lambda" + } + } + } + }, + position: { x: 587.4324475314369, y: 235.1751190101363 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "18e451c9-3700-453c-abbc-89f504499443", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "ad1c7db7-68ba-4d50-b2de-c33036fc9368" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "ad1c7db7-68ba-4d50-b2de-c33036fc9368": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "15", + zIndex: "15", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amazon Anthena", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(140,79,255)", + backgroundColor: "rgb(140,79,255)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(168,94,255)", + borderColor: "rgb(168,94,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tQXRoZW5hXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xOC43MjYwMjA1LDE0LjI4NTM5ODggQzIwLjUyNjY3MTEsMTQuMjg1Mzk4OCAyMS43MDgxMjU2LDE0LjU2OTY1NzcgMjIuMTQ1MzI0OCwxNC43ODQwOTg2IEMyMS43MDgxMjU2LDE0Ljk5ODUzOTUgMjAuNTI2NjcxMSwxNS4yODI3OTg0IDE4LjcyNjAyMDUsMTUuMjgyNzk4NCBDMTYuOTI1MzcsMTUuMjgyNzk4NCAxNS43NDM5MTU1LDE0Ljk5ODUzOTUgMTUuMzA2NzE2MywxNC43ODQwOTg2IEMxNS43NDM5MTU1LDE0LjU2OTY1NzcgMTYuOTI1MzcsMTQuMjg1Mzk4OCAxOC43MjYwMjA1LDE0LjI4NTM5ODggTDE4LjcyNjAyMDUsMTQuMjg1Mzk4OCBaIE0xOC43NDAyNTQ5LDE3LjQ4MzA2MiBDMTguNjUxNzk4NCwxNy40NTYxMzIyIDE4LjU3NTU0MjcsMTcuNDA0MjY3NCAxOC41NzU1NDI3LDE3LjMwMTUzNTMgQzE4LjU3NTU0MjcsMTcuMTYxODk5MyAxOC42OTA0MzQ2LDE3LjA0OTE5MzIgMTguODMxNzYxNywxNy4wNDkxOTMyIEMxOC44NzQ0NjQ5LDE3LjA0OTE5MzIgMTguOTAzOTUwNCwxNy4wNzUxMjU2IDE4LjkzODUxOTcsMTcuMDkyMDgxNCBMMTguNzQwMjU0OSwxNy40ODMwNjIgWiBNMjEuNjc4NjQwMSwyMS42MzkyMjYzIEMyMS42NDEwMjA2LDIxLjY2ODE1MDkgMjEuNTU0NTk3NSwyMS43MjYwMDAxIDIxLjM3NTY1MDksMjEuNzk0ODIwNiBDMjEuMjEzOTg4OSwyMS44NTc2NTY4IDIxLjAyMjg0MTMsMjEuOTEzNTExMiAyMC44MTAzNDIyLDIxLjk2MTM4NjQgQzIwLjIzODkzMywyMi4wOTEwNDgzIDE5LjUzNjM2NDEsMjIuMTYyODYxMSAxOC44MzE3NjE3LDIyLjE2Mjg2MTEgQzE3LjI5MDM4MDUsMjIuMTYyODYxMSAxNi4yMTU2ODM5LDIxLjg0MDcwMSAxNS45ODU5MDAxLDIxLjY0MTIyMTEgTDE1LjI5NzU2NTYsMTUuODQ3MzI2NiBDMTYuNDg1MTIwNiwxNi4yNDgyODEzIDE4LjIzNDkzNCwxNi4yODAxOTgxIDE4LjcyNjAyMDUsMTYuMjgwMTk4MSBDMTkuMjIyMTkwOCwxNi4yODAxOTgxIDIxLjAwMTQ4OTcsMTYuMjQ3MjgzOSAyMi4xOTAwNjE0LDE1LjgzNTM1NzggTDIxLjk4NzcyOTcsMTguMTMzMzY2NiBDMjEuMjUyNjI1MSwxNy44NTcwODY5IDIwLjM3OTI0MzUsMTcuNDc3MDc3NiAxOS41NDc1NDgzLDE3LjA4NTA5OTYgQzE5LjQ1MDk1NzgsMTYuNzgwODkyNyAxOS4xNzIzNzA0LDE2LjU1NTQ4MDQgMTguODMxNzYxNywxNi41NTU0ODA0IEMxOC40MTI4NjM5LDE2LjU1NTQ4MDQgMTguMDcyMjU1MywxNi44OTA2MDY2IDE4LjA3MjI1NTMsMTcuMzAxNTM1MyBDMTguMDcyMjU1MywxNy43MTI0NjM5IDE4LjQxMjg2MzksMTguMDQ2NTkyOCAxOC44MzE3NjE3LDE4LjA0NjU5MjggQzE4LjkzMjQxOTIsMTguMDQ2NTkyOCAxOS4wMjY5NzYyLDE4LjAyNTY0NzQgMTkuMTE0NDE2MSwxNy45OTA3Mzg0IEMyMC4yOTE4MDM2LDE4LjU1MTI3NyAyMS4yMDQ4MzgyLDE4LjkzNTI3NTkgMjEuODk1MjA2MiwxOS4xNzY2NDY2IEwyMS42Nzg2NDAxLDIxLjYzOTIyNjMgWiBNMTQuMTUzNzMwNiwxNC44NDE5NDc4IEwxNC45NzYyNzUxLDIxLjczMjk4MTkgQzE0Ljk3NjI3NTEsMjMuMTQ0MzAyNCAxOC42NzQxNjY3LDIzLjE2MDI2MDcgMTguODMxNzYxNywyMy4xNjAyNjA3IEMxOS42MTE2MDMsMjMuMTYwMjYwNyAyMC4zOTU1MTEzLDIzLjA3OTQ3MTQgMjEuMDM4MDkyNCwyMi45MzM4NTEgQzIxLjMwNjUxMjQsMjIuODczMDA5NyAyMS41NDU0NDY4LDIyLjgwMTE5NjkgMjEuNzQ4Nzk1MywyMi43MjI0MDIzIEMyMi4zNzIwNTgzLDIyLjQ4MTAzMTYgMjIuNjg3MjQ4NCwyMi4xNDc5MDAxIDIyLjY4NjIzMTYsMjEuNzc1ODcwMSBMMjIuODg5NTgwMSwxOS40NzA4Nzk1IEMyMy4xODg1MDIzLDE5LjUzODcwMjcgMjMuNDI0Mzg2NSwxOS41Njg2MjQ3IDIzLjYwNTM2NjcsMTkuNTY4NjI0NyBDMjQuMDgzMjM1NSwxOS41Njg2MjQ3IDI0LjIwOTMxMTYsMTkuMzgwMTE2MSAyNC4yOTU3MzQ3LDE5LjI1MDQ1NDIgTDI0LjM3MTk5MDMsMTguNzczNjk3MSBDMjQuMjQ5OTgxMiwxOC4yODE5NzkxIDIzLjM3MjUzMjcsMTcuNTg2NzkxNiAyMy4wNzQ2MjcyLDE3LjM3MDM1NTkgTDIzLjI5OTMyNzIsMTQuODI2OTg2OCBMMjMuMjk0MjQzNSwxNC44MjU5ODk0IEMyMy4yOTUyNjAzLDE0LjgxMjAyNTggMjMuMzAxMzYwNywxNC43OTkwNTk2IDIzLjMwMTM2MDcsMTQuNzg0MDk4NiBDMjMuMzAxMzYwNywxMy4zNTk4MTE5IDE5LjQ4OTU5NCwxMy4yODc5OTkxIDE4LjcyNjAyMDUsMTMuMjg3OTk5MSBDMTcuOTYyNDQ3MSwxMy4yODc5OTkxIDE0LjE1MDY4MDQsMTMuMzU5ODExOSAxNC4xNTA2ODA0LDE0Ljc4NDA5ODYgQzE0LjE1MDY4MDQsMTQuODA0MDQ2NiAxNC4xNTg4MTQzLDE0LjgyMTAwMjQgMTQuMTYwODQ3OCwxNC44NDA5NTA0IEwxNC4xNTM3MzA2LDE0Ljg0MTk0NzggWiBNMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEMyMy41MDk3OTI5LDkuMzk0MTUwOTYgMjcuMzg3NjQ3OSwxMy4xOTcyMzU4IDI3LjM4NzY0NzksMTcuODcyMDQ3OSBDMjcuMzg3NjQ3OSwyMi41NDY4NiAyMy41MDk3OTI5LDI2LjM0OTk0NDggMTguNzQ1MzM4NiwyNi4zNDk5NDQ4IEMxMy45Nzk4Njc3LDI2LjM0OTk0NDggMTAuMTAzMDI5NCwyMi41NDY4NiAxMC4xMDMwMjk0LDE3Ljg3MjA0NzkgQzEwLjEwMzAyOTQsMTMuMTk3MjM1OCAxMy45Nzk4Njc3LDkuMzk0MTUwOTYgMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEwxOC43NDUzMzg2LDkuMzk0MTUwOTYgWiBNNi4wMTY3NDIyNiwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIyLjI2NDU5NTkgTDEwLjE5MzUxOTUsMjIuMjY0NTk1OSBDMTEuODExMTU2NCwyNS4yODE3Mjk4IDE1LjAzNDIyOTQsMjcuMzQ3MzQ0NCAxOC43NDUzMzg2LDI3LjM0NzM0NDQgQzI0LjA3MTAzNDYsMjcuMzQ3MzQ0NCAyOC40MDQzOTAxLDIzLjA5NjQyNzIgMjguNDA0MzkwMSwxNy44NzIwNDc5IEMyOC40MDQzOTAxLDEyLjY0NzY2ODYgMjQuMDcxMDM0Niw4LjM5Njc1MTMzIDE4Ljc0NTMzODYsOC4zOTY3NTEzMyBDMTQuMzM1NzI3NSw4LjM5Njc1MTMzIDEwLjYxMzQzNCwxMS4zMTQxNDUzIDkuNDYyNDgxNzksMTUuMjgyNzk4NCBMNi4wMTY3NDIyNiwxNS4yODI3OTg0IEw2LjAxNjc0MjI2LDE2LjI4MDE5ODEgTDkuMjMzNzE0NzgsMTYuMjgwMTk4MSBDOS4xNDMyMjQ3MiwxNi43OTg4NDU5IDkuMDg2Mjg3MTUsMTcuMzI4NDY1MSA5LjA4NjI4NzE1LDE3Ljg3MjA0NzkgQzkuMDg2Mjg3MTUsMTguMDA3Njk0MiA5LjEwMDUyMTU0LDE4LjE0MDM0ODQgOS4xMDY2MjIsMTguMjc0OTk3MyBMNSwxOC4yNzQ5OTczIEw1LDE5LjI3MjM5NyBMOS4yMDMyMTI1MSwxOS4yNzIzOTcgQzkuMzA3OTM2OTYsMTkuOTY0NTkyMyA5LjQ4NzkwMDM0LDIwLjYzMTg1MjcgOS43MzgwMTg5NCwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIxLjI2NzE5NjIgWiBNMzMuNTAzMzUyNiwzMi41MzE4Mjc3IEMzMi44ODkyNDAyLDMzLjEzNTI1NDUgMzEuODIyNjc3NiwzMy4xNDAyNDE1IDMxLjIwNzU0ODUsMzIuNTM2ODE0NyBMMjUuOTU1MDU4LDI3LjM4NTI0NTYgQzI2LjgzNTU1NjgsMjYuNzQxOTIyOCAyNy42MjE0OTg2LDI1Ljk4Nzg4ODcgMjguMjk0NTgyLDI1LjEzOTEwMTYgTDMzLjUwOTQ1MywzMC4yODA2OTY4IEMzMy44MTU0OTI1LDMwLjU4MDkxNCAzMy45ODMyNTQ5LDMwLjk4MDg3MTMgMzMuOTgzMjU0OSwzMS40MDY3NjA5IEMzMy45ODIyMzgyLDMxLjgzMTY1MzIgMzMuODEyNDQyMiwzMi4yMzE2MTA0IDMzLjUwMzM1MjYsMzIuNTMxODI3NyBMMzMuNTAzMzUyNiwzMi41MzE4Mjc3IFogTTM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMjguODk1NDc2NiwyNC4zMTcyNDQzIEMzMC4xMjQ3MTgsMjIuNDU5MDg4OCAzMC44NDc2MjE4LDIwLjI0ODg1MTIgMzAuODQ3NjIxOCwxNy44NzIwNDc5IEMzMC44NDc2MjE4LDExLjMyNjExNDEgMjUuNDE4MjE4MSw2IDE4Ljc0NTMzODYsNiBDMTMuOTQ5MzY1NCw2IDkuNTk5NzQxOTksOC43ODE3NDc1OSA3LjY2NTg5ODIxLDEzLjA4NjUyNDQgTDguNTk1MjAwNjQsMTMuNDg5NDczOSBDMTAuMzY4Mzk5MSw5LjU0NTc1NTcxIDE0LjM1MTk5NTMsNi45OTczOTk2NCAxOC43NDUzMzg2LDYuOTk3Mzk5NjQgQzI0Ljg1Njk3NjQsNi45OTczOTk2NCAyOS44MzA4Nzk1LDExLjg3NTY4MTMgMjkuODMwODc5NSwxNy44NzIwNDc5IEMyOS44MzA4Nzk1LDIzLjg2ODQxNDUgMjQuODU2OTc2NCwyOC43NDc2OTM1IDE4Ljc0NTMzODYsMjguNzQ3NjkzNSBDMTUuMDEyODc3OCwyOC43NDc2OTM1IDExLjU1MjkwMzksMjYuOTIxNDU0OCA5LjQ5MDk1MDU3LDIzLjg2MzQyNzUgTDguNjQyOTg3NTMsMjQuNDEzOTkyMSBDMTAuODk0MDU0OSwyNy43NTIyODg3IDE0LjY3MDIzNTcsMjkuNzQ1MDkzMiAxOC43NDUzMzg2LDI5Ljc0NTA5MzIgQzIxLjA3Nzc0NTQsMjkuNzQ1MDkzMiAyMy4yNTA1MjM2LDI5LjA4MjgxOTggMjUuMTAwOTk0NSwyNy45NTY3NTU2IEwzMC40ODg3MTE4LDMzLjI0Mjk3MzcgQzMwLjk4NjkxNTUsMzMuNzMwNzAyMSAzMS42NDc3OTc5LDM0IDMyLjM0OTM1MDEsMzQgQzMzLjA1NTk4NiwzNCAzMy43MjA5MzU0LDMzLjcyODcwNzMgMzQuMjIxMTcyNiwzMy4yMzg5ODQxIEMzNC43MjE0MDk4LDMyLjc1MTI1NTcgMzQuOTk3OTYzNywzMi4xMDA5NTExIDM1LDMxLjQwNzc1ODMgQzM1LjAwMTAxMzksMzAuNzE1NTYzIDM0LjcyNjQ5MzUsMzAuMDY0MjYxIDM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMzQuMjI5MzA2NiwyOS41NzY1MzI2IFoiIGlkPSJBbWF6b24tQXRoZW5hX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tQXRoZW5hXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xOC43MjYwMjA1LDE0LjI4NTM5ODggQzIwLjUyNjY3MTEsMTQuMjg1Mzk4OCAyMS43MDgxMjU2LDE0LjU2OTY1NzcgMjIuMTQ1MzI0OCwxNC43ODQwOTg2IEMyMS43MDgxMjU2LDE0Ljk5ODUzOTUgMjAuNTI2NjcxMSwxNS4yODI3OTg0IDE4LjcyNjAyMDUsMTUuMjgyNzk4NCBDMTYuOTI1MzcsMTUuMjgyNzk4NCAxNS43NDM5MTU1LDE0Ljk5ODUzOTUgMTUuMzA2NzE2MywxNC43ODQwOTg2IEMxNS43NDM5MTU1LDE0LjU2OTY1NzcgMTYuOTI1MzcsMTQuMjg1Mzk4OCAxOC43MjYwMjA1LDE0LjI4NTM5ODggTDE4LjcyNjAyMDUsMTQuMjg1Mzk4OCBaIE0xOC43NDAyNTQ5LDE3LjQ4MzA2MiBDMTguNjUxNzk4NCwxNy40NTYxMzIyIDE4LjU3NTU0MjcsMTcuNDA0MjY3NCAxOC41NzU1NDI3LDE3LjMwMTUzNTMgQzE4LjU3NTU0MjcsMTcuMTYxODk5MyAxOC42OTA0MzQ2LDE3LjA0OTE5MzIgMTguODMxNzYxNywxNy4wNDkxOTMyIEMxOC44NzQ0NjQ5LDE3LjA0OTE5MzIgMTguOTAzOTUwNCwxNy4wNzUxMjU2IDE4LjkzODUxOTcsMTcuMDkyMDgxNCBMMTguNzQwMjU0OSwxNy40ODMwNjIgWiBNMjEuNjc4NjQwMSwyMS42MzkyMjYzIEMyMS42NDEwMjA2LDIxLjY2ODE1MDkgMjEuNTU0NTk3NSwyMS43MjYwMDAxIDIxLjM3NTY1MDksMjEuNzk0ODIwNiBDMjEuMjEzOTg4OSwyMS44NTc2NTY4IDIxLjAyMjg0MTMsMjEuOTEzNTExMiAyMC44MTAzNDIyLDIxLjk2MTM4NjQgQzIwLjIzODkzMywyMi4wOTEwNDgzIDE5LjUzNjM2NDEsMjIuMTYyODYxMSAxOC44MzE3NjE3LDIyLjE2Mjg2MTEgQzE3LjI5MDM4MDUsMjIuMTYyODYxMSAxNi4yMTU2ODM5LDIxLjg0MDcwMSAxNS45ODU5MDAxLDIxLjY0MTIyMTEgTDE1LjI5NzU2NTYsMTUuODQ3MzI2NiBDMTYuNDg1MTIwNiwxNi4yNDgyODEzIDE4LjIzNDkzNCwxNi4yODAxOTgxIDE4LjcyNjAyMDUsMTYuMjgwMTk4MSBDMTkuMjIyMTkwOCwxNi4yODAxOTgxIDIxLjAwMTQ4OTcsMTYuMjQ3MjgzOSAyMi4xOTAwNjE0LDE1LjgzNTM1NzggTDIxLjk4NzcyOTcsMTguMTMzMzY2NiBDMjEuMjUyNjI1MSwxNy44NTcwODY5IDIwLjM3OTI0MzUsMTcuNDc3MDc3NiAxOS41NDc1NDgzLDE3LjA4NTA5OTYgQzE5LjQ1MDk1NzgsMTYuNzgwODkyNyAxOS4xNzIzNzA0LDE2LjU1NTQ4MDQgMTguODMxNzYxNywxNi41NTU0ODA0IEMxOC40MTI4NjM5LDE2LjU1NTQ4MDQgMTguMDcyMjU1MywxNi44OTA2MDY2IDE4LjA3MjI1NTMsMTcuMzAxNTM1MyBDMTguMDcyMjU1MywxNy43MTI0NjM5IDE4LjQxMjg2MzksMTguMDQ2NTkyOCAxOC44MzE3NjE3LDE4LjA0NjU5MjggQzE4LjkzMjQxOTIsMTguMDQ2NTkyOCAxOS4wMjY5NzYyLDE4LjAyNTY0NzQgMTkuMTE0NDE2MSwxNy45OTA3Mzg0IEMyMC4yOTE4MDM2LDE4LjU1MTI3NyAyMS4yMDQ4MzgyLDE4LjkzNTI3NTkgMjEuODk1MjA2MiwxOS4xNzY2NDY2IEwyMS42Nzg2NDAxLDIxLjYzOTIyNjMgWiBNMTQuMTUzNzMwNiwxNC44NDE5NDc4IEwxNC45NzYyNzUxLDIxLjczMjk4MTkgQzE0Ljk3NjI3NTEsMjMuMTQ0MzAyNCAxOC42NzQxNjY3LDIzLjE2MDI2MDcgMTguODMxNzYxNywyMy4xNjAyNjA3IEMxOS42MTE2MDMsMjMuMTYwMjYwNyAyMC4zOTU1MTEzLDIzLjA3OTQ3MTQgMjEuMDM4MDkyNCwyMi45MzM4NTEgQzIxLjMwNjUxMjQsMjIuODczMDA5NyAyMS41NDU0NDY4LDIyLjgwMTE5NjkgMjEuNzQ4Nzk1MywyMi43MjI0MDIzIEMyMi4zNzIwNTgzLDIyLjQ4MTAzMTYgMjIuNjg3MjQ4NCwyMi4xNDc5MDAxIDIyLjY4NjIzMTYsMjEuNzc1ODcwMSBMMjIuODg5NTgwMSwxOS40NzA4Nzk1IEMyMy4xODg1MDIzLDE5LjUzODcwMjcgMjMuNDI0Mzg2NSwxOS41Njg2MjQ3IDIzLjYwNTM2NjcsMTkuNTY4NjI0NyBDMjQuMDgzMjM1NSwxOS41Njg2MjQ3IDI0LjIwOTMxMTYsMTkuMzgwMTE2MSAyNC4yOTU3MzQ3LDE5LjI1MDQ1NDIgTDI0LjM3MTk5MDMsMTguNzczNjk3MSBDMjQuMjQ5OTgxMiwxOC4yODE5NzkxIDIzLjM3MjUzMjcsMTcuNTg2NzkxNiAyMy4wNzQ2MjcyLDE3LjM3MDM1NTkgTDIzLjI5OTMyNzIsMTQuODI2OTg2OCBMMjMuMjk0MjQzNSwxNC44MjU5ODk0IEMyMy4yOTUyNjAzLDE0LjgxMjAyNTggMjMuMzAxMzYwNywxNC43OTkwNTk2IDIzLjMwMTM2MDcsMTQuNzg0MDk4NiBDMjMuMzAxMzYwNywxMy4zNTk4MTE5IDE5LjQ4OTU5NCwxMy4yODc5OTkxIDE4LjcyNjAyMDUsMTMuMjg3OTk5MSBDMTcuOTYyNDQ3MSwxMy4yODc5OTkxIDE0LjE1MDY4MDQsMTMuMzU5ODExOSAxNC4xNTA2ODA0LDE0Ljc4NDA5ODYgQzE0LjE1MDY4MDQsMTQuODA0MDQ2NiAxNC4xNTg4MTQzLDE0LjgyMTAwMjQgMTQuMTYwODQ3OCwxNC44NDA5NTA0IEwxNC4xNTM3MzA2LDE0Ljg0MTk0NzggWiBNMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEMyMy41MDk3OTI5LDkuMzk0MTUwOTYgMjcuMzg3NjQ3OSwxMy4xOTcyMzU4IDI3LjM4NzY0NzksMTcuODcyMDQ3OSBDMjcuMzg3NjQ3OSwyMi41NDY4NiAyMy41MDk3OTI5LDI2LjM0OTk0NDggMTguNzQ1MzM4NiwyNi4zNDk5NDQ4IEMxMy45Nzk4Njc3LDI2LjM0OTk0NDggMTAuMTAzMDI5NCwyMi41NDY4NiAxMC4xMDMwMjk0LDE3Ljg3MjA0NzkgQzEwLjEwMzAyOTQsMTMuMTk3MjM1OCAxMy45Nzk4Njc3LDkuMzk0MTUwOTYgMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEwxOC43NDUzMzg2LDkuMzk0MTUwOTYgWiBNNi4wMTY3NDIyNiwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIyLjI2NDU5NTkgTDEwLjE5MzUxOTUsMjIuMjY0NTk1OSBDMTEuODExMTU2NCwyNS4yODE3Mjk4IDE1LjAzNDIyOTQsMjcuMzQ3MzQ0NCAxOC43NDUzMzg2LDI3LjM0NzM0NDQgQzI0LjA3MTAzNDYsMjcuMzQ3MzQ0NCAyOC40MDQzOTAxLDIzLjA5NjQyNzIgMjguNDA0MzkwMSwxNy44NzIwNDc5IEMyOC40MDQzOTAxLDEyLjY0NzY2ODYgMjQuMDcxMDM0Niw4LjM5Njc1MTMzIDE4Ljc0NTMzODYsOC4zOTY3NTEzMyBDMTQuMzM1NzI3NSw4LjM5Njc1MTMzIDEwLjYxMzQzNCwxMS4zMTQxNDUzIDkuNDYyNDgxNzksMTUuMjgyNzk4NCBMNi4wMTY3NDIyNiwxNS4yODI3OTg0IEw2LjAxNjc0MjI2LDE2LjI4MDE5ODEgTDkuMjMzNzE0NzgsMTYuMjgwMTk4MSBDOS4xNDMyMjQ3MiwxNi43OTg4NDU5IDkuMDg2Mjg3MTUsMTcuMzI4NDY1MSA5LjA4NjI4NzE1LDE3Ljg3MjA0NzkgQzkuMDg2Mjg3MTUsMTguMDA3Njk0MiA5LjEwMDUyMTU0LDE4LjE0MDM0ODQgOS4xMDY2MjIsMTguMjc0OTk3MyBMNSwxOC4yNzQ5OTczIEw1LDE5LjI3MjM5NyBMOS4yMDMyMTI1MSwxOS4yNzIzOTcgQzkuMzA3OTM2OTYsMTkuOTY0NTkyMyA5LjQ4NzkwMDM0LDIwLjYzMTg1MjcgOS43MzgwMTg5NCwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIxLjI2NzE5NjIgWiBNMzMuNTAzMzUyNiwzMi41MzE4Mjc3IEMzMi44ODkyNDAyLDMzLjEzNTI1NDUgMzEuODIyNjc3NiwzMy4xNDAyNDE1IDMxLjIwNzU0ODUsMzIuNTM2ODE0NyBMMjUuOTU1MDU4LDI3LjM4NTI0NTYgQzI2LjgzNTU1NjgsMjYuNzQxOTIyOCAyNy42MjE0OTg2LDI1Ljk4Nzg4ODcgMjguMjk0NTgyLDI1LjEzOTEwMTYgTDMzLjUwOTQ1MywzMC4yODA2OTY4IEMzMy44MTU0OTI1LDMwLjU4MDkxNCAzMy45ODMyNTQ5LDMwLjk4MDg3MTMgMzMuOTgzMjU0OSwzMS40MDY3NjA5IEMzMy45ODIyMzgyLDMxLjgzMTY1MzIgMzMuODEyNDQyMiwzMi4yMzE2MTA0IDMzLjUwMzM1MjYsMzIuNTMxODI3NyBMMzMuNTAzMzUyNiwzMi41MzE4Mjc3IFogTTM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMjguODk1NDc2NiwyNC4zMTcyNDQzIEMzMC4xMjQ3MTgsMjIuNDU5MDg4OCAzMC44NDc2MjE4LDIwLjI0ODg1MTIgMzAuODQ3NjIxOCwxNy44NzIwNDc5IEMzMC44NDc2MjE4LDExLjMyNjExNDEgMjUuNDE4MjE4MSw2IDE4Ljc0NTMzODYsNiBDMTMuOTQ5MzY1NCw2IDkuNTk5NzQxOTksOC43ODE3NDc1OSA3LjY2NTg5ODIxLDEzLjA4NjUyNDQgTDguNTk1MjAwNjQsMTMuNDg5NDczOSBDMTAuMzY4Mzk5MSw5LjU0NTc1NTcxIDE0LjM1MTk5NTMsNi45OTczOTk2NCAxOC43NDUzMzg2LDYuOTk3Mzk5NjQgQzI0Ljg1Njk3NjQsNi45OTczOTk2NCAyOS44MzA4Nzk1LDExLjg3NTY4MTMgMjkuODMwODc5NSwxNy44NzIwNDc5IEMyOS44MzA4Nzk1LDIzLjg2ODQxNDUgMjQuODU2OTc2NCwyOC43NDc2OTM1IDE4Ljc0NTMzODYsMjguNzQ3NjkzNSBDMTUuMDEyODc3OCwyOC43NDc2OTM1IDExLjU1MjkwMzksMjYuOTIxNDU0OCA5LjQ5MDk1MDU3LDIzLjg2MzQyNzUgTDguNjQyOTg3NTMsMjQuNDEzOTkyMSBDMTAuODk0MDU0OSwyNy43NTIyODg3IDE0LjY3MDIzNTcsMjkuNzQ1MDkzMiAxOC43NDUzMzg2LDI5Ljc0NTA5MzIgQzIxLjA3Nzc0NTQsMjkuNzQ1MDkzMiAyMy4yNTA1MjM2LDI5LjA4MjgxOTggMjUuMTAwOTk0NSwyNy45NTY3NTU2IEwzMC40ODg3MTE4LDMzLjI0Mjk3MzcgQzMwLjk4NjkxNTUsMzMuNzMwNzAyMSAzMS42NDc3OTc5LDM0IDMyLjM0OTM1MDEsMzQgQzMzLjA1NTk4NiwzNCAzMy43MjA5MzU0LDMzLjcyODcwNzMgMzQuMjIxMTcyNiwzMy4yMzg5ODQxIEMzNC43MjE0MDk4LDMyLjc1MTI1NTcgMzQuOTk3OTYzNywzMi4xMDA5NTExIDM1LDMxLjQwNzc1ODMgQzM1LjAwMTAxMzksMzAuNzE1NTYzIDM0LjcyNjQ5MzUsMzAuMDY0MjYxIDM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMzQuMjI5MzA2NiwyOS41NzY1MzI2IFoiIGlkPSJBbWF6b24tQXRoZW5hX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amazon Anthena", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6acc7ded-abfe-4425-828f-01673da430bd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "17", + zIndex: "17", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Lambda Cost Function", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(237,113,0)", + backgroundColor: "rgb(237,113,0)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(202,105,7)", + borderColor: "rgb(202,105,7)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "dotted", + borderStyle: "dotted", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Lambda Cost Function", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "18e451c9-3700-453c-abbc-89f504499443": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-bcd06a28-d728-43c1-b479-a9831acb2a83-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/src/assets/images/learning-path/embed-test/embedded-design-cypress-des-1-no-modify-by-me-copy.js b/src/assets/images/learning-path/embed-test/embedded-design-cypress-des-1-no-modify-by-me-copy.js new file mode 100644 index 000000000000..b3de701e1987 --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-cypress-des-1-no-modify-by-me-copy.js @@ -0,0 +1,167 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { "elements": { "nodes": [{ "data": { "id": "d37dfa7b-2441-43da-bbca-54af63c56191", "label": "network-policy-om", "type": "NetworkPolicy", "version": "v1.25.2", "apiVersion": "networking.k8s.io/v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "network-policy-om", "services": { "d37dfa7b-2441-43da-bbca-54af63c56191": { "namespace": "default", "settings": { "name": "network-policy-om", "namespace": "default" }, "traits": { "meshmap": { "edges": [], "id": "d37dfa7b-2441-43da-bbca-54af63c56191", "label": "network-policy-om", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "circle", "styleOverrides": "", "subCategory": "Orchestration & Management", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" }, "position": { "posX": 667.6296205267655, "posY": 264.5646790356195 }, "whiteboardData": { "style": { "height": 10, "width": 10, "z-index": 1000 } } } }, "type": "NetworkPolicy" } } }, "inventoryLength": 0, "shape": "circle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg)" }, "position": { "x": 667.6296205267655, "y": 264.5646790356195 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": false, "pannable": false, "classes": "" }, { "data": { "id": "04a03e27-96da-45b4-88b6-6c455aa80d33", "label": "persistent-volume-claim-qy", "type": "PersistentVolumeClaim", "version": "v1.25.2", "apiVersion": "v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "persistent-volume-claim-qy", "services": { "04a03e27-96da-45b4-88b6-6c455aa80d33": { "namespace": "cyto-test", "settings": { "name": "persistent-volume-claim-qy", "namespace": "cyto-test" }, "traits": { "meshmap": { "edges": [], "id": "04a03e27-96da-45b4-88b6-6c455aa80d33", "label": "persistent-volume-claim-qy", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "cylinder", "styleOverrides": "{\"height\":32,\"width\":32,\"pading\":0,\"background-clip\":\"none\",\"background-image-containment\":\"over\",\"border-opacity\":0,\"background-opacity\":0,\"bounds-expansion\":20, \"z-index\": 9999}", "subCategory": "Scheduling & Orchestration", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/persistentvolume-color.svg", "svgComplete": "ui/public/static/img/meshmodels/kubernetes/complete/persistentvolume-complete.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/color/persistentvolume-color.svg" }, "position": { "posX": 321.45526331152433, "posY": 334.0372033939552 }, "whiteboardData": { "style": { "z-index": 10002 } } } }, "type": "PersistentVolumeClaim" } } }, "inventoryLength": 0, "shape": "circle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg)" }, "position": { "x": 321.45526331152433, "y": 334.0372033939552 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "pod-0.9264528896030135", "label": "pod", "type": "Pod", "version": "v1.25.2", "apiVersion": "v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "pod", "services": { "pod-0.9264528896030135": { "namespace": "default", "settings": { "name": "pod", "namespace": "default" }, "traits": { "meshmap": { "edges": [{ "data": { "bindingComponent": "NetworkPolicy", "id": "03784737-f118-4ec0-9e20-657800a1d10b", "metadata": { "binded_by": "7b927235-973e-4f7c-842d-6b09cca3feb1" }, "source": "42f6f900-9677-443d-9dc8-9425d7cf1fb7", "subType": "Firewall", "target": "pod-0.9264528896030135" }, "style": { "curve-style": { "bypass": true, "bypassed": { "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "font-family": { "name": "font-family", "strValue": "Qanelas Soft, sans-serif", "value": ["Qanelas Soft, sans-serif", "Qanelas Soft, sans-serif"] }, "font-size": { "name": "font-size", "pfValue": 6, "strValue": "6px", "units": "px", "value": 6 }, "line-color": { "bypass": true, "bypassed": { "mapping": { "mapped": { "fn": true, "mapping": true }, "name": "line-color", "prevFnValue": "#7aa1f0", "strValue": "fn" }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "line-style": { "bypass": true, "bypassed": { "name": "line-style", "strValue": "dotted", "value": "dotted" }, "name": "line-style", "strValue": "dotted", "value": "dotted" }, "target-arrow-shape": { "bypass": true, "bypassed": { "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "text-events": { "name": "text-events", "strValue": "yes", "value": "yes" }, "text-outline-color": { "name": "text-outline-color", "pfValue": [255, 255, 255], "strValue": "rgb(255,255,255)", "value": [255, 255, 255] }, "text-outline-width": { "name": "text-outline-width", "pfValue": 1, "strValue": "1px", "units": "px", "value": 1 }, "text-wrap": { "name": "text-wrap", "strValue": "wrap", "value": "wrap" }, "width": { "name": "width", "pfValue": 1.5, "strValue": "1.5px", "units": "px", "value": 1.5 }, "z-index": { "name": "z-index", "pfValue": 999, "strValue": "999", "value": 999 }, "z-index-compare": { "name": "z-index-compare", "strValue": "manual", "value": "manual" } } }, { "data": { "bindingComponent": "NetworkPolicy", "id": "a0bc571a-cb46-416e-8010-a31f2ccc7f8c", "metadata": { "binded_by": "d37dfa7b-2441-43da-bbca-54af63c56191" }, "source": "pod-0.9264528896030135", "subType": "Firewall", "target": "3bc06654-0d47-4d13-a389-7f6fd86f0691" }, "style": { "curve-style": { "bypass": true, "bypassed": { "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "font-family": { "name": "font-family", "strValue": "Qanelas Soft, sans-serif", "value": ["Qanelas Soft, sans-serif", "Qanelas Soft, sans-serif"] }, "font-size": { "name": "font-size", "pfValue": 6, "strValue": "6px", "units": "px", "value": 6 }, "line-color": { "bypass": true, "bypassed": { "mapping": { "mapped": { "fn": true, "mapping": true }, "name": "line-color", "prevFnValue": "#7aa1f0", "strValue": "fn" }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "line-style": { "bypass": true, "bypassed": { "name": "line-style", "strValue": "dotted", "value": "dotted" }, "name": "line-style", "strValue": "dotted", "value": "dotted" }, "target-arrow-shape": { "bypass": true, "bypassed": { "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "text-events": { "name": "text-events", "strValue": "yes", "value": "yes" }, "text-outline-color": { "name": "text-outline-color", "pfValue": [255, 255, 255], "strValue": "rgb(255,255,255)", "value": [255, 255, 255] }, "text-outline-width": { "name": "text-outline-width", "pfValue": 1, "strValue": "1px", "units": "px", "value": 1 }, "text-wrap": { "name": "text-wrap", "strValue": "wrap", "value": "wrap" }, "width": { "name": "width", "pfValue": 1.5, "strValue": "1.5px", "units": "px", "value": 1.5 }, "z-index": { "name": "z-index", "pfValue": 999, "strValue": "999", "value": 999 }, "z-index-compare": { "name": "z-index-compare", "strValue": "manual", "value": "manual" } } }], "id": "pod-0.9264528896030135", "label": "pod", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "round-rectangle", "styleOverrides": "", "subCategory": "Scheduling & Orchestration", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "position": { "posX": 691.4274532641025, "posY": 179.0577177728906 }, "whiteboardData": { "style": { "z-index": 10003 } } } }, "type": "Pod" } } }, "inventoryLength": 0, "shape": "round-rectangle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg)" }, "position": { "x": 691.4274532641025, "y": 179.0577177728906 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "43b3db0f-c704-434e-bc25-ad2db56849f6", "label": "target-group-binding-fu", "type": "TargetGroupBinding", "version": "0.1.0", "apiVersion": "elbv2.k8s.aws/v1alpha1", "meshType": "aws-target-group-binding", "model": "aws-target-group-binding", "config": { "name": "target-group-binding-fu", "services": { "43b3db0f-c704-434e-bc25-ad2db56849f6": { "namespace": "cyto-test", "settings": { "spec": { "networking": { "ingress": [] }, "service Ref": { "name": "hex-port", "port": "8080" }, "target Group ARN": "1" }, "name": "target-group-binding-fu", "namespace": "cyto-test" }, "traits": { "meshmap": { "edges": [], "id": "43b3db0f-c704-434e-bc25-ad2db56849f6", "label": "target-group-binding-fu", "meshmodel-data": { "category": { "metadata": null, "name": "Cloud Native Network" }, "displayName": "AWS Target Group Binding", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "source_uri": "https://github.com/snowplow-devops/helm-charts/releases/download/aws-target-group-binding-0.1.0/aws-target-group-binding-0.1.0.tgz", "svgColor": "ui/public/static/img/meshmodels/aws-node-termination-handler-2/color/terminator-color.svg", "svgWhite": "ui/public/static/img/meshmodels/aws-target-group-binding/white/targetgroupbinding-white.svg" }, "name": "aws-target-group-binding", "version": "0.1.0" }, "meshmodel-metadata": { "genealogy": "", "isNamespaced": true, "logoURL": "https://aws.amazon.com/architecture/icons/", "model": "aws-target-group-binding", "modelDisplayName": "AWS Target Group Binding", "primaryColor": "#ff9900", "published": true, "secondaryColor": "#F4BC79", "shape": "circle", "styleOverrides": "", "subCategory": "Service Proxy", "svgColor": "ui/public/static/img/meshmodels/aws-node-termination-handler-2/color/terminator-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/aws-target-group-binding/white/targetgroupbinding-white.svg" }, "position": { "posX": 413.31357448374945, "posY": 339.6689955929098 }, "whiteboardData": { "style": { "z-index": 10005 } } } }, "type": "TargetGroupBinding" } } }, "inventoryLength": 0, "shape": "circle", "color": "rgb(255,153,0)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/aws-node-termination-handler-2/color/terminator-color.svg)" }, "position": { "x": 413.31357448374945, "y": 339.6689955929098 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9ebc8c08-ad03-49d7-9a13-93dcc770a9d5", "label": "", "type": "BottomRoundRectangle", "version": "v1.0.0", "apiVersion": "core.meshery.io/v1alpha1", "meshType": "meshery", "model": "meshery", "config": { "name": "bottom-round-rectangle-qc", "services": { "9ebc8c08-ad03-49d7-9a13-93dcc770a9d5": { "settings": { "user Messages": [], "name": "bottom-round-rectangle-qc" }, "traits": { "meshmap": { "edges": [], "id": "9ebc8c08-ad03-49d7-9a13-93dcc770a9d5", "label": "", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Meshery", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/meshery/color/broker-color.svg", "svgWhite": "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" }, "name": "meshery", "version": "v1.0.0" }, "meshmodel-metadata": { "genealogy": "", "isAnnotation": true, "isNamespaced": false, "logoURL": "", "model": "meshery", "modelDisplayName": "Meshery", "primaryColor": "#00B39F", "published": true, "secondaryColor": "#00D3A9", "shape": "bottom-round-rectangle", "styleOverrides": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":1,\"border-style\":\"solid\",\"background-opacity\":0.1,\"data\":{\"label\":\"\"}}", "subCategory": "App Definition and Development", "svgColor": "ui/public/static/img/meshmodels/meshery/color/broker-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" }, "position": { "posX": 375.5645047471623, "posY": 215.0215224612034 }, "whiteboardData": { "style": { "z-index": 10011 } } } }, "type": "BottomRoundRectangle" } } }, "inventoryLength": 0, "shape": "bottom-round-rectangle", "color": "rgb(0,179,159)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/meshery/color/broker-color.svg)" }, "position": { "x": 375.5645047471623, "y": 215.0215224612034 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "82477a34-a249-4b70-8d1d-0e4c92a68cc9", "label": "cyto-test", "type": "Namespace", "version": "v1.25.2", "apiVersion": "v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "cyto-test", "services": { "82477a34-a249-4b70-8d1d-0e4c92a68cc9": { "settings": { "name": "cyto-test" }, "traits": { "meshmap": { "edges": [], "id": "82477a34-a249-4b70-8d1d-0e4c92a68cc9", "label": "cyto-test", "position": { "posX": 587.0680177414781, "posY": 327.65008413730885 }, "whiteboardData": { "style": { "z-index": 10006 } } } }, "type": "Namespace" } } }, "inventoryLength": 0, "shape": "circle", "color": "rgb(0,179,159)" }, "position": { "x": 587.0680177414781, "y": 327.65008413730885 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7b927235-973e-4f7c-842d-6b09cca3feb1", "label": "network-policy-iw", "type": "NetworkPolicy", "version": "v1.25.2", "apiVersion": "networking.k8s.io/v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "network-policy-iw", "services": { "7b927235-973e-4f7c-842d-6b09cca3feb1": { "namespace": "default", "settings": { "name": "network-policy-iw", "namespace": "default" }, "traits": { "meshmap": { "edges": [], "id": "7b927235-973e-4f7c-842d-6b09cca3feb1", "label": "network-policy-iw", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "circle", "styleOverrides": "", "subCategory": "Orchestration & Management", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" }, "position": { "posX": 611.6452046360913, "posY": 232.9842892604363 }, "whiteboardData": { "style": { "height": 10, "width": 10, "z-index": 1000 } } } }, "type": "NetworkPolicy" } } }, "inventoryLength": 0, "shape": "circle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg)" }, "position": { "x": 611.6452046360913, "y": 232.9842892604363 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": false, "pannable": false, "classes": "" }, { "data": { "id": "12c07bb9-3675-4f89-90de-34edde07e823", "label": "pod-qq", "type": "Pod", "version": "v1.25.2", "apiVersion": "v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "pod-qq", "services": { "12c07bb9-3675-4f89-90de-34edde07e823": { "namespace": "default", "settings": { "name": "pod-qq", "namespace": "default" }, "traits": { "meshmap": { "edges": [{ "data": { "id": "ce358fa7-8545-4642-8dce-5cc50f3c6ab7", "source": "3bc06654-0d47-4d13-a389-7f6fd86f0691", "subType": "Firewall", "target": "12c07bb9-3675-4f89-90de-34edde07e823" }, "style": { "curve-style": { "bypass": true, "bypassed": { "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "font-family": { "name": "font-family", "strValue": "Qanelas Soft, sans-serif", "value": ["Qanelas Soft, sans-serif", "Qanelas Soft, sans-serif"] }, "font-size": { "name": "font-size", "pfValue": 6, "strValue": "6px", "units": "px", "value": 6 }, "line-color": { "bypass": true, "bypassed": { "mapping": { "mapped": { "fn": true, "mapping": true }, "name": "line-color", "prevFnValue": "#7aa1f0", "strValue": "fn" }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "line-style": { "bypass": true, "bypassed": { "name": "line-style", "strValue": "dotted", "value": "dotted" }, "name": "line-style", "strValue": "dotted", "value": "dotted" }, "target-arrow-shape": { "bypass": true, "bypassed": { "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "text-events": { "name": "text-events", "strValue": "yes", "value": "yes" }, "text-outline-color": { "name": "text-outline-color", "pfValue": [255, 255, 255], "strValue": "rgb(255,255,255)", "value": [255, 255, 255] }, "text-outline-width": { "name": "text-outline-width", "pfValue": 1, "strValue": "1px", "units": "px", "value": 1 }, "text-wrap": { "name": "text-wrap", "strValue": "wrap", "value": "wrap" }, "width": { "name": "width", "pfValue": 1.5, "strValue": "1.5px", "units": "px", "value": 1.5 }, "z-index": { "name": "z-index", "pfValue": 999, "strValue": "999", "value": 999 }, "z-index-compare": { "name": "z-index-compare", "strValue": "manual", "value": "manual" } } }], "id": "12c07bb9-3675-4f89-90de-34edde07e823", "label": "pod-qq", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "round-rectangle", "styleOverrides": "", "subCategory": "Scheduling & Orchestration", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "position": { "posX": 491.04752639645375, "posY": 341.74510475818454 }, "whiteboardData": { "style": { "z-index": 10004 } } } }, "type": "Pod" } } }, "inventoryLength": 0, "shape": "round-rectangle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg)" }, "position": { "x": 491.04752639645375, "y": 341.74510475818454 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5590f9f7-37be-4fa7-b18d-10d1f39fdcaf", "label": "", "type": "Section", "version": "v1.0.0", "apiVersion": "core.meshery.io/v1alpha1", "meshType": "meshery", "model": "meshery", "config": { "name": "section-xe", "services": { "5590f9f7-37be-4fa7-b18d-10d1f39fdcaf": { "settings": { "user Messages": [], "name": "section-xe" }, "traits": { "meshmap": { "edges": [], "id": "5590f9f7-37be-4fa7-b18d-10d1f39fdcaf", "label": "", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Meshery", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/meshery/color/broker-color.svg", "svgWhite": "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" }, "name": "meshery", "version": "v1.0.0" }, "meshmodel-metadata": { "genealogy": "parent", "isAnnotation": true, "isNamespaced": false, "logoURL": "", "model": "meshery", "modelDisplayName": "Meshery", "primaryColor": "#00B39F", "published": true, "secondaryColor": "#00D3A9", "shape": "rectangle", "styleOverrides": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":1,\"border-style\":\"dashed\",\"background-opacity\":0.1,\"data\":{\"label\":\"\"}}", "subCategory": "App Definition and Development", "svgColor": "ui/public/static/img/meshmodels/meshery/color/broker-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" }, "position": { "posX": 469.0865011093155, "posY": 200.94905412685083 }, "whiteboardData": {} } }, "type": "Section" } } }, "inventoryLength": 0, "shape": "rectangle", "color": "rgb(0,179,159)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/meshery/color/broker-color.svg)" }, "position": { "x": 469.0865011093155, "y": 204.94905412685083 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": true, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "weight": 75, "id": "ab3a00d2-6fc0-4cdb-85d1-88ab0e435873" }, "position": { "x": 469.0865011093155, "y": 200.94905412685083 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "shadow-node" }, { "data": { "id": "3bc06654-0d47-4d13-a389-7f6fd86f0691", "label": "pod", "type": "Pod", "version": "v1.25.2", "apiVersion": "v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "pod", "services": { "3bc06654-0d47-4d13-a389-7f6fd86f0691": { "namespace": "cyto-test", "settings": { "name": "pod", "namespace": "cyto-test" }, "traits": { "meshmap": { "edges": [{ "data": { "id": "ce358fa7-8545-4642-8dce-5cc50f3c6ab7", "source": "3bc06654-0d47-4d13-a389-7f6fd86f0691", "subType": "Firewall", "target": "12c07bb9-3675-4f89-90de-34edde07e823" }, "style": { "curve-style": { "bypass": true, "bypassed": { "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "font-family": { "name": "font-family", "strValue": "Qanelas Soft, sans-serif", "value": ["Qanelas Soft, sans-serif", "Qanelas Soft, sans-serif"] }, "font-size": { "name": "font-size", "pfValue": 6, "strValue": "6px", "units": "px", "value": 6 }, "line-color": { "bypass": true, "bypassed": { "mapping": { "mapped": { "fn": true, "mapping": true }, "name": "line-color", "prevFnValue": "#7aa1f0", "strValue": "fn" }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "line-style": { "bypass": true, "bypassed": { "name": "line-style", "strValue": "dotted", "value": "dotted" }, "name": "line-style", "strValue": "dotted", "value": "dotted" }, "target-arrow-shape": { "bypass": true, "bypassed": { "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "text-events": { "name": "text-events", "strValue": "yes", "value": "yes" }, "text-outline-color": { "name": "text-outline-color", "pfValue": [255, 255, 255], "strValue": "rgb(255,255,255)", "value": [255, 255, 255] }, "text-outline-width": { "name": "text-outline-width", "pfValue": 1, "strValue": "1px", "units": "px", "value": 1 }, "text-wrap": { "name": "text-wrap", "strValue": "wrap", "value": "wrap" }, "width": { "name": "width", "pfValue": 1.5, "strValue": "1.5px", "units": "px", "value": 1.5 }, "z-index": { "name": "z-index", "pfValue": 999, "strValue": "999", "value": 999 }, "z-index-compare": { "name": "z-index-compare", "strValue": "manual", "value": "manual" } } }, { "data": { "bindingComponent": "NetworkPolicy", "id": "a0bc571a-cb46-416e-8010-a31f2ccc7f8c", "metadata": { "binded_by": "d37dfa7b-2441-43da-bbca-54af63c56191" }, "source": "pod-0.9264528896030135", "subType": "Firewall", "target": "3bc06654-0d47-4d13-a389-7f6fd86f0691" }, "style": { "curve-style": { "bypass": true, "bypassed": { "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "font-family": { "name": "font-family", "strValue": "Qanelas Soft, sans-serif", "value": ["Qanelas Soft, sans-serif", "Qanelas Soft, sans-serif"] }, "font-size": { "name": "font-size", "pfValue": 6, "strValue": "6px", "units": "px", "value": 6 }, "line-color": { "bypass": true, "bypassed": { "mapping": { "mapped": { "fn": true, "mapping": true }, "name": "line-color", "prevFnValue": "#7aa1f0", "strValue": "fn" }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "line-style": { "bypass": true, "bypassed": { "name": "line-style", "strValue": "dotted", "value": "dotted" }, "name": "line-style", "strValue": "dotted", "value": "dotted" }, "target-arrow-shape": { "bypass": true, "bypassed": { "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "text-events": { "name": "text-events", "strValue": "yes", "value": "yes" }, "text-outline-color": { "name": "text-outline-color", "pfValue": [255, 255, 255], "strValue": "rgb(255,255,255)", "value": [255, 255, 255] }, "text-outline-width": { "name": "text-outline-width", "pfValue": 1, "strValue": "1px", "units": "px", "value": 1 }, "text-wrap": { "name": "text-wrap", "strValue": "wrap", "value": "wrap" }, "width": { "name": "width", "pfValue": 1.5, "strValue": "1.5px", "units": "px", "value": 1.5 }, "z-index": { "name": "z-index", "pfValue": 999, "strValue": "999", "value": 999 }, "z-index-compare": { "name": "z-index-compare", "strValue": "manual", "value": "manual" } } }], "id": "3bc06654-0d47-4d13-a389-7f6fd86f0691", "label": "pod", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "round-rectangle", "styleOverrides": "", "subCategory": "Scheduling & Orchestration", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/apiservice-white.svg" }, "parent": "82477a34-a249-4b70-8d1d-0e4c92a68cc9", "position": { "posX": 643.6206402030288, "posY": 350.8303055385945 }, "whiteboardData": { "style": { "z-index": 10003 } } } }, "type": "Pod" } } }, "parent": "82477a34-a249-4b70-8d1d-0e4c92a68cc9", "inventoryLength": 0, "shape": "round-rectangle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/apiservice-color.svg)" }, "position": { "x": 643.6206402030288, "y": 350.8303055385945 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "abcce4d1-0b59-4b62-a6c1-42f92b4693dd", "label": "chaos-jq", "type": "Chaos", "version": "0.2.0", "apiVersion": "shardingsphere.apache.org/v1alpha1", "meshType": "apache-shardingsphere-operator-charts", "model": "apache-shardingsphere-operator-charts", "config": { "name": "chaos-jq", "services": { "abcce4d1-0b59-4b62-a6c1-42f92b4693dd": { "namespace": "section-xe", "settings": { "spec": { "network Chaos": { "source": { "expression Selectors": [], "namespaces": [], "nodes": [] }, "target": { "expression Selectors": [], "namespaces": [], "nodes": [] } }, "pod Chaos": { "params": { "container Kill": { "container Names": [] } }, "selector": { "expression Selectors": [], "namespaces": [], "nodes": [] } }, "pressure Cfg": { "dist SQLs": [] } }, "name": "chaos-jq", "namespace": "section-xe" }, "traits": { "meshmap": { "edges": [], "id": "abcce4d1-0b59-4b62-a6c1-42f92b4693dd", "label": "chaos-jq", "meshmodel-data": { "category": { "metadata": null, "name": "App Definition and Development" }, "displayName": "Apache Shardingsphere Operator Charts", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "source_uri": "https://github.com/apache/shardingsphere-on-cloud/releases/download/0.3.0/apache-shardingsphere-operator-charts-0.3.0.tgz", "svgColor": "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg", "svgWhite": "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg" }, "name": "apache-shardingsphere-operator-charts", "version": "0.2.0" }, "meshmodel-metadata": { "genealogy": "", "isAnnotation": false, "isNamespaced": true, "logoURL": "https://layer5.io/company/brand", "model": "apache-shardingsphere-operator-charts", "modelDisplayName": "Apache Shardingsphere Operator Charts", "primaryColor": "#F26F23", "published": true, "secondaryColor": "#00D3A9", "shape": "circle", "styleOverrides": "", "subCategory": "Database", "svgColor": "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg" }, "parent": "5590f9f7-37be-4fa7-b18d-10d1f39fdcaf", "position": { "posX": 469.0865011093155, "posY": 191.94905412685083 }, "whiteboardData": { "style": { "z-index": 10009 } } } }, "type": "Chaos" } } }, "parent": "5590f9f7-37be-4fa7-b18d-10d1f39fdcaf", "inventoryLength": 0, "shape": "circle", "color": "rgb(242,111,35)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg)" }, "position": { "x": 469.0865011093155, "y": 191.94905412685083 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "42f6f900-9677-443d-9dc8-9425d7cf1fb7", "label": "pod-pw", "type": "Pod", "version": "v1.25.2", "apiVersion": "v1", "meshType": "kubernetes", "model": "kubernetes", "config": { "name": "pod-pw", "services": { "42f6f900-9677-443d-9dc8-9425d7cf1fb7": { "namespace": "cyto-test", "settings": { "name": "pod-pw", "namespace": "cyto-test" }, "traits": { "meshmap": { "edges": [{ "data": { "bindingComponent": "NetworkPolicy", "id": "03784737-f118-4ec0-9e20-657800a1d10b", "metadata": { "binded_by": "7b927235-973e-4f7c-842d-6b09cca3feb1" }, "source": "42f6f900-9677-443d-9dc8-9425d7cf1fb7", "subType": "Firewall", "target": "pod-0.9264528896030135" }, "style": { "curve-style": { "bypass": true, "bypassed": { "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "name": "curve-style", "strValue": "bezier", "value": "bezier" }, "font-family": { "name": "font-family", "strValue": "Qanelas Soft, sans-serif", "value": ["Qanelas Soft, sans-serif", "Qanelas Soft, sans-serif"] }, "font-size": { "name": "font-size", "pfValue": 6, "strValue": "6px", "units": "px", "value": 6 }, "line-color": { "bypass": true, "bypassed": { "mapping": { "mapped": { "fn": true, "mapping": true }, "name": "line-color", "prevFnValue": "#7aa1f0", "strValue": "fn" }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "name": "line-color", "pfValue": [122, 161, 240], "strValue": "rgb(122,161,240)", "value": [122, 161, 240] }, "line-style": { "bypass": true, "bypassed": { "name": "line-style", "strValue": "dotted", "value": "dotted" }, "name": "line-style", "strValue": "dotted", "value": "dotted" }, "target-arrow-shape": { "bypass": true, "bypassed": { "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "name": "target-arrow-shape", "strValue": "vee", "value": "vee" }, "text-events": { "name": "text-events", "strValue": "yes", "value": "yes" }, "text-outline-color": { "name": "text-outline-color", "pfValue": [255, 255, 255], "strValue": "rgb(255,255,255)", "value": [255, 255, 255] }, "text-outline-width": { "name": "text-outline-width", "pfValue": 1, "strValue": "1px", "units": "px", "value": 1 }, "text-wrap": { "name": "text-wrap", "strValue": "wrap", "value": "wrap" }, "width": { "name": "width", "pfValue": 1.5, "strValue": "1.5px", "units": "px", "value": 1.5 }, "z-index": { "name": "z-index", "pfValue": 999, "strValue": "999", "value": 999 }, "z-index-compare": { "name": "z-index-compare", "strValue": "manual", "value": "manual" } } }], "id": "42f6f900-9677-443d-9dc8-9425d7cf1fb7", "label": "pod-pw", "meshmodel-data": { "category": { "metadata": null, "name": "Orchestration & Management" }, "displayName": "Kubernetes", "displayhostname": "", "hostID": "00000000-0000-0000-0000-000000000000", "hostname": "", "metadata": { "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" }, "name": "kubernetes", "version": "v1.25.2" }, "meshmodel-metadata": { "genealogy": "", "isCustomResource": false, "isNamespaced": true, "logoURL": "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", "model": "kubernetes", "modelDisplayName": "Kubernetes", "primaryColor": "#326CE5", "published": true, "secondaryColor": "#7aa1f0", "shape": "round-rectangle", "styleOverrides": "", "subCategory": "Scheduling & Orchestration", "svgColor": "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", "svgComplete": "", "svgWhite": "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" }, "parent": "82477a34-a249-4b70-8d1d-0e4c92a68cc9", "position": { "posX": 532.5153952799274, "posY": 286.46986273602323 }, "whiteboardData": { "style": { "z-index": 10008 } } } }, "type": "Pod" } } }, "parent": "82477a34-a249-4b70-8d1d-0e4c92a68cc9", "inventoryLength": 0, "shape": "round-rectangle", "color": "rgb(50,108,229)", "hangingSvg": "url(https://playground.meshery.io/ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg)" }, "position": { "x": 532.5153952799274, "y": 286.46986273602323 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }], "edges": [{ "data": { "id": "ce358fa7-8545-4642-8dce-5cc50f3c6ab7", "source": "3bc06654-0d47-4d13-a389-7f6fd86f0691", "subType": "Firewall", "target": "12c07bb9-3675-4f89-90de-34edde07e823" }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "bindingComponent": "NetworkPolicy", "id": "a0bc571a-cb46-416e-8010-a31f2ccc7f8c", "metadata": { "binded_by": "d37dfa7b-2441-43da-bbca-54af63c56191" }, "source": "pod-0.9264528896030135", "subType": "Firewall", "target": "3bc06654-0d47-4d13-a389-7f6fd86f0691" }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "bindingComponent": "NetworkPolicy", "id": "03784737-f118-4ec0-9e20-657800a1d10b", "metadata": { "binded_by": "7b927235-973e-4f7c-842d-6b09cca3feb1" }, "source": "42f6f900-9677-443d-9dc8-9425d7cf1fb7", "subType": "Firewall", "target": "pod-0.9264528896030135" }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }] }, "elementStyles": { "d37dfa7b-2441-43da-bbca-54af63c56191": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "1000", "zIndex": "1000", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "network-policy-om", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "10px", "width": "10px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "network-policy-om", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "04a03e27-96da-45b4-88b6-6c455aa80d33": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10002", "zIndex": "10002", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "persistent-volume-claim-qy", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "32px", "width": "32px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "0", "backgroundOpacity": "0", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "20px", "boundsExpansion": "20px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "0", "borderOpacity": "0", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", "backgroundImage": "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "over", "backgroundImageContainment": "over", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "none", "backgroundClip": "none", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "persistent-volume-claim-qy", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "pod-0.9264528896030135": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10003", "zIndex": "10003", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "pod", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "round-rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgaGVpZ2h0PSIyMCIgd2lkdGg9IjIwIj48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik05MTcuNyAxNDguOGwtNDIuNC00Mi40Yy0xLjYtMS42LTMuNi0yLjMtNS43LTIuM3MtNC4xLjgtNS43IDIuM2wtNzYuMSA3Ni4xYTE5OS4yNyAxOTkuMjcgMCAwIDAtMTEyLjEtMzQuM2MtNTEuMiAwLTEwMi40IDE5LjUtMTQxLjUgNTguNkw0MzIuMyAzMDguN2E4LjAzIDguMDMgMCAwIDAgMCAxMS4zTDcwNCA1OTEuN2MxLjYgMS42IDMuNiAyLjMgNS43IDIuMyAyIDAgNC4xLS44IDUuNy0yLjNsMTAxLjktMTAxLjljNjguOS02OSA3Ny0xNzUuNyAyNC4zLTI1My41bDc2LjEtNzYuMWMzLjEtMy4yIDMuMS04LjMgMC0xMS40ek01NzguOSA1NDYuN2E4LjAzIDguMDMgMCAwIDAtMTEuMyAwTDUwMSA2MTMuMyA0MTAuNyA1MjNsNjYuNy02Ni43YzMuMS0zLjEgMy4xLTguMiAwLTExLjNMNDQxIDQwOC42YTguMDMgOC4wMyAwIDAgMC0xMS4zIDBMMzYzIDQ3NS4zbC00My00M2E3Ljg1IDcuODUgMCAwIDAtNS43LTIuM2MtMiAwLTQuMS44LTUuNyAyLjNMMjA2LjggNTM0LjJjLTY4LjkgNjguOS03NyAxNzUuNy0yNC4zIDI1My41bC03Ni4xIDc2LjFhOC4wMyA4LjAzIDAgMCAwIDAgMTEuM2w0Mi40IDQyLjRjMS42IDEuNiAzLjYgMi4zIDUuNyAyLjNzNC4xLS44IDUuNy0yLjNsNzYuMS03Ni4xYzMzLjcgMjIuOSA3Mi45IDM0LjMgMTEyLjEgMzQuMyA1MS4yIDAgMTAyLjQtMTkuNSAxNDEuNS01OC42bDEwMS45LTEwMS45YzMuMS0zLjEgMy4xLTguMiAwLTExLjNsLTQzLTQzIDY2LjctNjYuN2MzLjEtMy4xIDMuMS04LjIgMC0xMS4zbC0zNi42LTM2LjJ6Ij48L3BhdGg+PC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgaGVpZ2h0PSIyMCIgd2lkdGg9IjIwIj48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik05MTcuNyAxNDguOGwtNDIuNC00Mi40Yy0xLjYtMS42LTMuNi0yLjMtNS43LTIuM3MtNC4xLjgtNS43IDIuM2wtNzYuMSA3Ni4xYTE5OS4yNyAxOTkuMjcgMCAwIDAtMTEyLjEtMzQuM2MtNTEuMiAwLTEwMi40IDE5LjUtMTQxLjUgNTguNkw0MzIuMyAzMDguN2E4LjAzIDguMDMgMCAwIDAgMCAxMS4zTDcwNCA1OTEuN2MxLjYgMS42IDMuNiAyLjMgNS43IDIuMyAyIDAgNC4xLS44IDUuNy0yLjNsMTAxLjktMTAxLjljNjguOS02OSA3Ny0xNzUuNyAyNC4zLTI1My41bDc2LjEtNzYuMWMzLjEtMy4yIDMuMS04LjMgMC0xMS40ek01NzguOSA1NDYuN2E4LjAzIDguMDMgMCAwIDAtMTEuMyAwTDUwMSA2MTMuMyA0MTAuNyA1MjNsNjYuNy02Ni43YzMuMS0zLjEgMy4xLTguMiAwLTExLjNMNDQxIDQwOC42YTguMDMgOC4wMyAwIDAgMC0xMS4zIDBMMzYzIDQ3NS4zbC00My00M2E3Ljg1IDcuODUgMCAwIDAtNS43LTIuM2MtMiAwLTQuMS44LTUuNyAyLjNMMjA2LjggNTM0LjJjLTY4LjkgNjguOS03NyAxNzUuNy0yNC4zIDI1My41bC03Ni4xIDc2LjFhOC4wMyA4LjAzIDAgMCAwIDAgMTEuM2w0Mi40IDQyLjRjMS42IDEuNiAzLjYgMi4zIDUuNyAyLjNzNC4xLS44IDUuNy0yLjNsNzYuMS03Ni4xYzMzLjcgMjIuOSA3Mi45IDM0LjMgMTEyLjEgMzQuMyA1MS4yIDAgMTAyLjQtMTkuNSAxNDEuNS01OC42bDEwMS45LTEwMS45YzMuMS0zLjEgMy4xLTguMiAwLTExLjNsLTQzLTQzIDY2LjctNjYuN2MzLjEtMy4xIDMuMS04LjIgMC0xMS4zbC0zNi42LTM2LjJ6Ij48L3BhdGg+PC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "pod", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "43b3db0f-c704-434e-bc25-ad2db56849f6": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10005", "zIndex": "10005", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "target-group-binding-fu", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(255,153,0)", "backgroundColor": "rgb(255,153,0)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(255,183,0)", "borderColor": "rgb(255,183,0)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzA0IDE4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzA0IDE4MjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIGhlaWdodD0iMjAiIHdpZHRoPSIyMCI+CjxzdHlsZSB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHR5cGU9InRleHQvY3NzIj4KICAgICAgICAuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICAgICAgPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QwIiBkPSJNODYuNCw2Ni40YzAsMy43LDAuNCw2LjcsMS4xLDguOWMwLjgsMi4yLDEuOCw0LjYsMy4yLDcuMmMwLjUsMC44LDAuNywxLjYsMC43LDIuM2MwLDEtMC42LDItMS45LDNMODMuMiw5MiYjeEE7ICAgICAgICAgICAgICAgIGMtMC45LDAuNi0xLjgsMC45LTIuNiwwLjljLTEsMC0yLTAuNS0zLTEuNEM3Ni4yLDkwLDc1LDg4LjQsNzQsODYuOGMtMS0xLjctMi0zLjYtMy4xLTUuOWMtNy44LDkuMi0xNy42LDEzLjgtMjkuNCwxMy44JiN4QTsgICAgICAgICAgICAgICAgYy04LjQsMC0xNS4xLTIuNC0yMC03LjJjLTQuOS00LjgtNy40LTExLjItNy40LTE5LjJjMC04LjUsMy0xNS40LDkuMS0yMC42czE0LjItNy44LDI0LjUtNy44YzMuNCwwLDYuOSwwLjMsMTAuNiwwLjgmI3hBOyAgICAgICAgICAgICAgICBzNy41LDEuMywxMS41LDIuMnYtNy4zYzAtNy42LTEuNi0xMi45LTQuNy0xNmMtMy4yLTMuMS04LjYtNC42LTE2LjMtNC42Yy0zLjUsMC03LjEsMC40LTEwLjgsMS4zcy03LjMsMi0xMC44LDMuNCYjeEE7ICAgICAgICAgICAgICAgIGMtMS42LDAuNy0yLjgsMS4xLTMuNSwxLjNjLTAuNywwLjItMS4yLDAuMy0xLjYsMC4zYy0xLjQsMC0yLjEtMS0yLjEtMy4xdi00LjljMC0xLjYsMC4yLTIuOCwwLjctMy41czEuNC0xLjQsMi44LTIuMSYjeEE7ICAgICAgICAgICAgICAgIGMzLjUtMS44LDcuNy0zLjMsMTIuNi00LjVDNDEsMS45LDQ2LjIsMS4zLDUxLjcsMS4zYzExLjksMCwyMC42LDIuNywyNi4yLDguMWM1LjUsNS40LDguMywxMy42LDguMywyNC42djMyLjRIODYuNHogTTQ1LjgsODEuNiYjeEE7ICAgICAgICAgICAgICAgIGMzLjMsMCw2LjctMC42LDEwLjMtMS44YzMuNi0xLjIsNi44LTMuNCw5LjUtNi40YzEuNi0xLjksMi44LTQsMy40LTYuNHMxLTUuMywxLTguN3YtNC4yYy0yLjktMC43LTYtMS4zLTkuMi0xLjdzLTYuMy0wLjYtOS40LTAuNiYjeEE7ICAgICAgICAgICAgICAgIGMtNi43LDAtMTEuNiwxLjMtMTQuOSw0Yy0zLjMsMi43LTQuOSw2LjUtNC45LDExLjVjMCw0LjcsMS4yLDguMiwzLjcsMTAuNkMzNy43LDgwLjQsNDEuMiw4MS42LDQ1LjgsODEuNnogTTEyNi4xLDkyLjQmI3hBOyAgICAgICAgICAgICAgICBjLTEuOCwwLTMtMC4zLTMuOC0xYy0wLjgtMC42LTEuNS0yLTIuMS0zLjlMOTYuNywxMC4yYy0wLjYtMi0wLjktMy4zLTAuOS00YzAtMS42LDAuOC0yLjUsMi40LTIuNWg5LjhjMS45LDAsMy4yLDAuMywzLjksMSYjeEE7ICAgICAgICAgICAgICAgIGMwLjgsMC42LDEuNCwyLDIsMy45bDE2LjgsNjYuMmwxNS42LTY2LjJjMC41LTIsMS4xLTMuMywxLjktMy45YzAuOC0wLjYsMi4yLTEsNC0xaDhjMS45LDAsMy4yLDAuMyw0LDFjMC44LDAuNiwxLjUsMiwxLjksMy45JiN4QTsgICAgICAgICAgICAgICAgbDE1LjgsNjdsMTcuMy02N2MwLjYtMiwxLjMtMy4zLDItMy45YzAuOC0wLjYsMi4xLTEsMy45LTFoOS4zYzEuNiwwLDIuNSwwLjgsMi41LDIuNWMwLDAuNS0wLjEsMS0wLjIsMS42JiN4QTsgICAgICAgICAgICAgICAgYy0wLjEsMC42LTAuMywxLjQtMC43LDIuNWwtMjQuMSw3Ny4zYy0wLjYsMi0xLjMsMy4zLTIuMSwzLjlzLTIuMSwxLTMuOCwxaC04LjZjLTEuOSwwLTMuMi0wLjMtNC0xcy0xLjUtMi0xLjktNEwxNTYsMjMmI3hBOyAgICAgICAgICAgICAgICBsLTE1LjQsNjQuNGMtMC41LDItMS4xLDMuMy0xLjksNGMtMC44LDAuNy0yLjIsMS00LDFIMTI2LjF6IE0yNTQuNiw5NS4xYy01LjIsMC0xMC40LTAuNi0xNS40LTEuOGMtNS0xLjItOC45LTIuNS0xMS41LTQmI3hBOyAgICAgICAgICAgICAgICBjLTEuNi0wLjktMi43LTEuOS0zLjEtMi44Yy0wLjQtMC45LTAuNi0xLjktMC42LTIuOHYtNS4xYzAtMi4xLDAuOC0zLjEsMi4zLTMuMWMwLjYsMCwxLjIsMC4xLDEuOCwwLjNjMC42LDAuMiwxLjUsMC42LDIuNSwxJiN4QTsgICAgICAgICAgICAgICAgYzMuNCwxLjUsNy4xLDIuNywxMSwzLjVjNCwwLjgsNy45LDEuMiwxMS45LDEuMmM2LjMsMCwxMS4yLTEuMSwxNC42LTMuM2MzLjQtMi4yLDUuMi01LjQsNS4yLTkuNWMwLTIuOC0wLjktNS4xLTIuNy03JiN4QTsgICAgICAgICAgICAgICAgYy0xLjgtMS45LTUuMi0zLjYtMTAuMS01LjJMMjQ2LDUyYy03LjMtMi4zLTEyLjctNS43LTE2LTEwLjJjLTMuMy00LjQtNS05LjMtNS0xNC41YzAtNC4yLDAuOS03LjksMi43LTExLjFzNC4yLTYsNy4yLTguMiYjeEE7ICAgICAgICAgICAgICAgIGMzLTIuMyw2LjQtNCwxMC40LTUuMnM4LjItMS43LDEyLjYtMS43YzIuMiwwLDQuNSwwLjEsNi43LDAuNGMyLjMsMC4zLDQuNCwwLjcsNi41LDEuMWMyLDAuNSwzLjksMSw1LjcsMS42JiN4QTsgICAgICAgICAgICAgICAgYzEuOCwwLjYsMy4yLDEuMiw0LjIsMS44YzEuNCwwLjgsMi40LDEuNiwzLDIuNWMwLjYsMC44LDAuOSwxLjksMC45LDMuM3Y0LjdjMCwyLjEtMC44LDMuMi0yLjMsMy4yYy0wLjgsMC0yLjEtMC40LTMuOC0xLjImI3hBOyAgICAgICAgICAgICAgICBjLTUuNy0yLjYtMTIuMS0zLjktMTkuMi0zLjljLTUuNywwLTEwLjIsMC45LTEzLjMsMi44cy00LjcsNC44LTQuNyw4LjljMCwyLjgsMSw1LjIsMyw3LjFjMiwxLjksNS43LDMuOCwxMSw1LjVsMTQuMiw0LjUmI3hBOyAgICAgICAgICAgICAgICBjNy4yLDIuMywxMi40LDUuNSwxNS41LDkuNnM0LjYsOC44LDQuNiwxNGMwLDQuMy0wLjksOC4yLTIuNiwxMS42Yy0xLjgsMy40LTQuMiw2LjQtNy4zLDguOGMtMy4xLDIuNS02LjgsNC4zLTExLjEsNS42JiN4QTsgICAgICAgICAgICAgICAgQzI2NC40LDk0LjQsMjU5LjcsOTUuMSwyNTQuNiw5NS4xeiI+PC9wYXRoPgogICAgICAgIDxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICAgICAgICAgICAgICA8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0yNzMuNSwxNDMuN2MtMzIuOSwyNC4zLTgwLjcsMzcuMi0xMjEuOCwzNy4yYy01Ny42LDAtMTA5LjUtMjEuMy0xNDguNy01Ni43Yy0zLjEtMi44LTAuMy02LjYsMy40LTQuNCYjeEE7ICAgICAgICAgICAgICAgICAgICAgICAgYzQyLjQsMjQuNiw5NC43LDM5LjUsMTQ4LjgsMzkuNWMzNi41LDAsNzYuNi03LjYsMTEzLjUtMjMuMkMyNzQuMiwxMzMuNiwyNzguOSwxMzkuNywyNzMuNSwxNDMuN3oiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTI4Ny4yLDEyOC4xYy00LjItNS40LTI3LjgtMi42LTM4LjUtMS4zYy0zLjIsMC40LTMuNy0yLjQtMC44LTQuNWMxOC44LTEzLjIsNDkuNy05LjQsNTMuMy01JiN4QTsgICAgICAgICAgICAgICAgICAgICAgICBjMy42LDQuNS0xLDM1LjQtMTguNiw1MC4yYy0yLjcsMi4zLTUuMywxLjEtNC4xLTEuOUMyODIuNSwxNTUuNywyOTEuNCwxMzMuNCwyODcuMiwxMjguMXoiPjwvcGF0aD4KICAgICAgICA8L2c+CjwvZz4KPC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzA0IDE4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzA0IDE4MjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIGhlaWdodD0iMjAiIHdpZHRoPSIyMCI+CjxzdHlsZSB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHR5cGU9InRleHQvY3NzIj4KICAgICAgICAuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICAgICAgPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QwIiBkPSJNODYuNCw2Ni40YzAsMy43LDAuNCw2LjcsMS4xLDguOWMwLjgsMi4yLDEuOCw0LjYsMy4yLDcuMmMwLjUsMC44LDAuNywxLjYsMC43LDIuM2MwLDEtMC42LDItMS45LDNMODMuMiw5MiYjeEE7ICAgICAgICAgICAgICAgIGMtMC45LDAuNi0xLjgsMC45LTIuNiwwLjljLTEsMC0yLTAuNS0zLTEuNEM3Ni4yLDkwLDc1LDg4LjQsNzQsODYuOGMtMS0xLjctMi0zLjYtMy4xLTUuOWMtNy44LDkuMi0xNy42LDEzLjgtMjkuNCwxMy44JiN4QTsgICAgICAgICAgICAgICAgYy04LjQsMC0xNS4xLTIuNC0yMC03LjJjLTQuOS00LjgtNy40LTExLjItNy40LTE5LjJjMC04LjUsMy0xNS40LDkuMS0yMC42czE0LjItNy44LDI0LjUtNy44YzMuNCwwLDYuOSwwLjMsMTAuNiwwLjgmI3hBOyAgICAgICAgICAgICAgICBzNy41LDEuMywxMS41LDIuMnYtNy4zYzAtNy42LTEuNi0xMi45LTQuNy0xNmMtMy4yLTMuMS04LjYtNC42LTE2LjMtNC42Yy0zLjUsMC03LjEsMC40LTEwLjgsMS4zcy03LjMsMi0xMC44LDMuNCYjeEE7ICAgICAgICAgICAgICAgIGMtMS42LDAuNy0yLjgsMS4xLTMuNSwxLjNjLTAuNywwLjItMS4yLDAuMy0xLjYsMC4zYy0xLjQsMC0yLjEtMS0yLjEtMy4xdi00LjljMC0xLjYsMC4yLTIuOCwwLjctMy41czEuNC0xLjQsMi44LTIuMSYjeEE7ICAgICAgICAgICAgICAgIGMzLjUtMS44LDcuNy0zLjMsMTIuNi00LjVDNDEsMS45LDQ2LjIsMS4zLDUxLjcsMS4zYzExLjksMCwyMC42LDIuNywyNi4yLDguMWM1LjUsNS40LDguMywxMy42LDguMywyNC42djMyLjRIODYuNHogTTQ1LjgsODEuNiYjeEE7ICAgICAgICAgICAgICAgIGMzLjMsMCw2LjctMC42LDEwLjMtMS44YzMuNi0xLjIsNi44LTMuNCw5LjUtNi40YzEuNi0xLjksMi44LTQsMy40LTYuNHMxLTUuMywxLTguN3YtNC4yYy0yLjktMC43LTYtMS4zLTkuMi0xLjdzLTYuMy0wLjYtOS40LTAuNiYjeEE7ICAgICAgICAgICAgICAgIGMtNi43LDAtMTEuNiwxLjMtMTQuOSw0Yy0zLjMsMi43LTQuOSw2LjUtNC45LDExLjVjMCw0LjcsMS4yLDguMiwzLjcsMTAuNkMzNy43LDgwLjQsNDEuMiw4MS42LDQ1LjgsODEuNnogTTEyNi4xLDkyLjQmI3hBOyAgICAgICAgICAgICAgICBjLTEuOCwwLTMtMC4zLTMuOC0xYy0wLjgtMC42LTEuNS0yLTIuMS0zLjlMOTYuNywxMC4yYy0wLjYtMi0wLjktMy4zLTAuOS00YzAtMS42LDAuOC0yLjUsMi40LTIuNWg5LjhjMS45LDAsMy4yLDAuMywzLjksMSYjeEE7ICAgICAgICAgICAgICAgIGMwLjgsMC42LDEuNCwyLDIsMy45bDE2LjgsNjYuMmwxNS42LTY2LjJjMC41LTIsMS4xLTMuMywxLjktMy45YzAuOC0wLjYsMi4yLTEsNC0xaDhjMS45LDAsMy4yLDAuMyw0LDFjMC44LDAuNiwxLjUsMiwxLjksMy45JiN4QTsgICAgICAgICAgICAgICAgbDE1LjgsNjdsMTcuMy02N2MwLjYtMiwxLjMtMy4zLDItMy45YzAuOC0wLjYsMi4xLTEsMy45LTFoOS4zYzEuNiwwLDIuNSwwLjgsMi41LDIuNWMwLDAuNS0wLjEsMS0wLjIsMS42JiN4QTsgICAgICAgICAgICAgICAgYy0wLjEsMC42LTAuMywxLjQtMC43LDIuNWwtMjQuMSw3Ny4zYy0wLjYsMi0xLjMsMy4zLTIuMSwzLjlzLTIuMSwxLTMuOCwxaC04LjZjLTEuOSwwLTMuMi0wLjMtNC0xcy0xLjUtMi0xLjktNEwxNTYsMjMmI3hBOyAgICAgICAgICAgICAgICBsLTE1LjQsNjQuNGMtMC41LDItMS4xLDMuMy0xLjksNGMtMC44LDAuNy0yLjIsMS00LDFIMTI2LjF6IE0yNTQuNiw5NS4xYy01LjIsMC0xMC40LTAuNi0xNS40LTEuOGMtNS0xLjItOC45LTIuNS0xMS41LTQmI3hBOyAgICAgICAgICAgICAgICBjLTEuNi0wLjktMi43LTEuOS0zLjEtMi44Yy0wLjQtMC45LTAuNi0xLjktMC42LTIuOHYtNS4xYzAtMi4xLDAuOC0zLjEsMi4zLTMuMWMwLjYsMCwxLjIsMC4xLDEuOCwwLjNjMC42LDAuMiwxLjUsMC42LDIuNSwxJiN4QTsgICAgICAgICAgICAgICAgYzMuNCwxLjUsNy4xLDIuNywxMSwzLjVjNCwwLjgsNy45LDEuMiwxMS45LDEuMmM2LjMsMCwxMS4yLTEuMSwxNC42LTMuM2MzLjQtMi4yLDUuMi01LjQsNS4yLTkuNWMwLTIuOC0wLjktNS4xLTIuNy03JiN4QTsgICAgICAgICAgICAgICAgYy0xLjgtMS45LTUuMi0zLjYtMTAuMS01LjJMMjQ2LDUyYy03LjMtMi4zLTEyLjctNS43LTE2LTEwLjJjLTMuMy00LjQtNS05LjMtNS0xNC41YzAtNC4yLDAuOS03LjksMi43LTExLjFzNC4yLTYsNy4yLTguMiYjeEE7ICAgICAgICAgICAgICAgIGMzLTIuMyw2LjQtNCwxMC40LTUuMnM4LjItMS43LDEyLjYtMS43YzIuMiwwLDQuNSwwLjEsNi43LDAuNGMyLjMsMC4zLDQuNCwwLjcsNi41LDEuMWMyLDAuNSwzLjksMSw1LjcsMS42JiN4QTsgICAgICAgICAgICAgICAgYzEuOCwwLjYsMy4yLDEuMiw0LjIsMS44YzEuNCwwLjgsMi40LDEuNiwzLDIuNWMwLjYsMC44LDAuOSwxLjksMC45LDMuM3Y0LjdjMCwyLjEtMC44LDMuMi0yLjMsMy4yYy0wLjgsMC0yLjEtMC40LTMuOC0xLjImI3hBOyAgICAgICAgICAgICAgICBjLTUuNy0yLjYtMTIuMS0zLjktMTkuMi0zLjljLTUuNywwLTEwLjIsMC45LTEzLjMsMi44cy00LjcsNC44LTQuNyw4LjljMCwyLjgsMSw1LjIsMyw3LjFjMiwxLjksNS43LDMuOCwxMSw1LjVsMTQuMiw0LjUmI3hBOyAgICAgICAgICAgICAgICBjNy4yLDIuMywxMi40LDUuNSwxNS41LDkuNnM0LjYsOC44LDQuNiwxNGMwLDQuMy0wLjksOC4yLTIuNiwxMS42Yy0xLjgsMy40LTQuMiw2LjQtNy4zLDguOGMtMy4xLDIuNS02LjgsNC4zLTExLjEsNS42JiN4QTsgICAgICAgICAgICAgICAgQzI2NC40LDk0LjQsMjU5LjcsOTUuMSwyNTQuNiw5NS4xeiI+PC9wYXRoPgogICAgICAgIDxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICAgICAgICAgICAgICA8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0yNzMuNSwxNDMuN2MtMzIuOSwyNC4zLTgwLjcsMzcuMi0xMjEuOCwzNy4yYy01Ny42LDAtMTA5LjUtMjEuMy0xNDguNy01Ni43Yy0zLjEtMi44LTAuMy02LjYsMy40LTQuNCYjeEE7ICAgICAgICAgICAgICAgICAgICAgICAgYzQyLjQsMjQuNiw5NC43LDM5LjUsMTQ4LjgsMzkuNWMzNi41LDAsNzYuNi03LjYsMTEzLjUtMjMuMkMyNzQuMiwxMzMuNiwyNzguOSwxMzkuNywyNzMuNSwxNDMuN3oiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTI4Ny4yLDEyOC4xYy00LjItNS40LTI3LjgtMi42LTM4LjUtMS4zYy0zLjIsMC40LTMuNy0yLjQtMC44LTQuNWMxOC44LTEzLjIsNDkuNy05LjQsNTMuMy01JiN4QTsgICAgICAgICAgICAgICAgICAgICAgICBjMy42LDQuNS0xLDM1LjQtMTguNiw1MC4yYy0yLjcsMi4zLTUuMywxLjEtNC4xLTEuOUMyODIuNSwxNTUuNywyOTEuNCwxMzMuNCwyODcuMiwxMjguMXoiPjwvcGF0aD4KICAgICAgICA8L2c+CjwvZz4KPC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "target-group-binding-fu", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "9ebc8c08-ad03-49d7-9a13-93dcc770a9d5": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10011", "zIndex": "10011", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "30px", "width": "30px", "shape": "bottom-round-rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(0,179,159)", "backgroundColor": "rgb(0,179,159)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "0.1", "backgroundOpacity": "0.1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,214,190)", "borderColor": "rgb(0,214,190)", "border-opacity": "1", "borderOpacity": "1", "border-width": "1px", "borderWidth": "1px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(none)", "backgroundImage": "url(none)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "82477a34-a249-4b70-8d1d-0e4c92a68cc9": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10006", "zIndex": "10006", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "cyto-test", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(0,179,159)", "backgroundColor": "rgb(0,179,159)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,214,190)", "borderColor": "rgb(0,214,190)", "border-opacity": "1", "borderOpacity": "1", "border-width": "2px", "borderWidth": "2px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPgo8c3ZnIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDMyIDMyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMzZfODApIj4KPHBhdGggZD0iTTE2LjQ2MzIgNy42OTM1MVYxNS4yMDE1TDIyLjk3MDIgMTEuNDM0NkwxNi40NjMyIDcuNjkzNTFaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTYuNDYzMiAxNi43NzA1VjI0LjMxNTdMMjMuMDMwNyAyMC41NjA3TDE2LjQ2MzIgMTYuNzcwNVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xNS41Mjc0IDE1LjE1MDJWNy43NTYzMkw5LjEwMTk0IDExLjQ0MTZMMTUuNTI3NCAxNS4xNTAyWiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0yLjYzNjk5IDI0LjI4NzhDMy44OTc1NiAyNi4zMTU3IDUuNjAxNzggMjguMDMxIDcuNjIxMzQgMjkuMzA0N1YyMS40MDMzTDIuNjM2OTkgMjQuMjg3OFoiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuOCIvPgo8cGF0aCBkPSJNMTUuNTI3NCAyNC4yNzg1VjE2LjgyNjRMOS4wODU3OSAyMC41NTZMMTUuNTI3NCAyNC4yNzg1WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik04LjU1OTY1IDI4LjgzNDRMMTUuMDgyOSAyNS4xMDQ5TDguNTU5NjUgMjEuMzMzNVYyOC44MzQ0WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTIzLjQ3NTMgMjguODc0MlYyMS4zODQ4TDE2Ljk2MTUgMjUuMTA5NkwyMy40NzUzIDI4Ljg3NDJaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTI5Ljg1MiAyMy40MTk0QzMwLjk2NTUgMjEuMzQxIDMxLjU5NDkgMTkuMDM3OCAzMS42OTM1IDE2LjY4MTlMMjQuOTExOSAyMC41NjUxTDI5Ljg1MiAyMy40MTk0WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0yNC40MTM2IDE5Ljc2OTFMMzAuOTYgMTYuMDI1NkwyNC40MTM2IDEyLjI2MzRWMTkuNzY5MVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yMy40NzU1IDEwLjY0NTVWMy4yMDA0MUwxNi45OTE5IDYuOTE4MjdMMjMuNDc1NSAxMC42NDU1WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0yMy40NzU0IDE5LjczNjRWMTIuMjIzOUwxNi45Nzc5IDE1Ljk4NkwyMy40NzU0IDE5LjczNjRaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTguNTU5NjUgMTIuMjA5OVYxOS43Nzg0TDE1LjEwNjEgMTUuOTg4Mkw4LjU1OTY1IDEyLjIwOTlaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTUuNTI3NCAwLjI4NTcwNkMxMy4xMTc2IDAuMzUzNTM0IDEwLjc1NiAwLjk3NzM5NyA4LjYyNzEgMi4xMDg1NUwxNS41Mjc0IDYuMDY2MjFWMC4yODU3MDZaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTguNTU5NjUgMy4xNDkyVjEwLjY3MzRMMTUuMTEwNyA2LjkxNTk3TDguNTU5NjUgMy4xNDkyWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTcuNjIxMzQgMi42OTI5OUM1LjYwMjI4IDMuOTY3MzUgMy44OTgxOCA1LjY4MjYgMi42MzY5OSA3LjcwOTlMNy42MjEzNCAxMC41ODczVjIuNjkyOTlaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTIzLjQzMzUgMi4xNDgxMUMyMS4yODY5IDAuOTkyOTg2IDE4LjkwMDEgMC4zNTUyMjYgMTYuNDYzMiAwLjI4NTcwNlY2LjE0MDY5TDIzLjQzMzUgMi4xNDgxMVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0wLjI4NTcxMyAxNi41NTE3QzAuMzY3MDg1IDE4Ljk3NTQgMS4wMTAyMyAyMS4zNDcxIDIuMTY0NDcgMjMuNDc5OUw3LjIxMzk2IDIwLjU1NTlMMC4yODU3MTMgMTYuNTUxN1oiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yLjE2NDQ3IDguNTE5OTZDMS4wMTM4NCAxMC42NDMzIDAuMzcwODMzIDEzLjAwNDMgMC4yODU3MTMgMTUuNDE3OEw3LjIyMDk3IDExLjQzOTNMMi4xNjQ0NyA4LjUxOTk2WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTguNjE1NDQgMjkuODgyMkMxMC43NDY5IDMxLjAxODkgMTMuMTEyOCAzMS42NDYxIDE1LjUyNzQgMzEuNzE0M1YyNS45MjkxTDguNjE1NDQgMjkuODgyMloiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuOCIvPgo8cGF0aCBkPSJNMjkuMzY3NSA3LjczNTM5QzI4LjExNDMgNS43MTM5NiAyNi40MjA4IDQuMDAxNDcgMjQuNDEzNiAyLjcyNTQzVjEwLjU5ODdMMjkuMzY3NSA3LjczNTM5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTI0LjQxMzYgMjkuMjc5MUMyNi40MzEyIDI3Ljk5NCAyOC4xMzE0IDI2LjI2ODQgMjkuMzg2MyAyNC4yMzIxTDI0LjQxMzYgMjEuMzU5MVYyOS4yNzkxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTMxLjcxNDMgMTUuMzczOEMzMS42MjUxIDEyLjk4MzUgMzAuOTg3OSAxMC42NDU4IDI5Ljg1MTggOC41NDEwMkwyNC44NDQxIDExLjQzMjVMMzEuNzE0MyAxNS4zNzM4WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0xNi40NjMyIDMxLjcxNDNDMTguODcyNSAzMS42NDY3IDIxLjIzMzMgMzEuMDIyOSAyMy4zNjEzIDI5Ljg5MTRMMTYuNDYzMiAyNS44OTQyVjMxLjcxNDNaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNy42MjE0MSAxOS43MTFWMTIuMjg5MkwxLjE3NzM4IDE1Ljk4MzhMNy42MjE0MSAxOS43MTFaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zNl84MCI+CjxyZWN0IHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPgo8c3ZnIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDMyIDMyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMzZfODApIj4KPHBhdGggZD0iTTE2LjQ2MzIgNy42OTM1MVYxNS4yMDE1TDIyLjk3MDIgMTEuNDM0NkwxNi40NjMyIDcuNjkzNTFaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTYuNDYzMiAxNi43NzA1VjI0LjMxNTdMMjMuMDMwNyAyMC41NjA3TDE2LjQ2MzIgMTYuNzcwNVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xNS41Mjc0IDE1LjE1MDJWNy43NTYzMkw5LjEwMTk0IDExLjQ0MTZMMTUuNTI3NCAxNS4xNTAyWiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0yLjYzNjk5IDI0LjI4NzhDMy44OTc1NiAyNi4zMTU3IDUuNjAxNzggMjguMDMxIDcuNjIxMzQgMjkuMzA0N1YyMS40MDMzTDIuNjM2OTkgMjQuMjg3OFoiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuOCIvPgo8cGF0aCBkPSJNMTUuNTI3NCAyNC4yNzg1VjE2LjgyNjRMOS4wODU3OSAyMC41NTZMMTUuNTI3NCAyNC4yNzg1WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik04LjU1OTY1IDI4LjgzNDRMMTUuMDgyOSAyNS4xMDQ5TDguNTU5NjUgMjEuMzMzNVYyOC44MzQ0WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTIzLjQ3NTMgMjguODc0MlYyMS4zODQ4TDE2Ljk2MTUgMjUuMTA5NkwyMy40NzUzIDI4Ljg3NDJaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTI5Ljg1MiAyMy40MTk0QzMwLjk2NTUgMjEuMzQxIDMxLjU5NDkgMTkuMDM3OCAzMS42OTM1IDE2LjY4MTlMMjQuOTExOSAyMC41NjUxTDI5Ljg1MiAyMy40MTk0WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0yNC40MTM2IDE5Ljc2OTFMMzAuOTYgMTYuMDI1NkwyNC40MTM2IDEyLjI2MzRWMTkuNzY5MVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yMy40NzU1IDEwLjY0NTVWMy4yMDA0MUwxNi45OTE5IDYuOTE4MjdMMjMuNDc1NSAxMC42NDU1WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0yMy40NzU0IDE5LjczNjRWMTIuMjIzOUwxNi45Nzc5IDE1Ljk4NkwyMy40NzU0IDE5LjczNjRaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTguNTU5NjUgMTIuMjA5OVYxOS43Nzg0TDE1LjEwNjEgMTUuOTg4Mkw4LjU1OTY1IDEyLjIwOTlaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTUuNTI3NCAwLjI4NTcwNkMxMy4xMTc2IDAuMzUzNTM0IDEwLjc1NiAwLjk3NzM5NyA4LjYyNzEgMi4xMDg1NUwxNS41Mjc0IDYuMDY2MjFWMC4yODU3MDZaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTguNTU5NjUgMy4xNDkyVjEwLjY3MzRMMTUuMTEwNyA2LjkxNTk3TDguNTU5NjUgMy4xNDkyWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTcuNjIxMzQgMi42OTI5OUM1LjYwMjI4IDMuOTY3MzUgMy44OTgxOCA1LjY4MjYgMi42MzY5OSA3LjcwOTlMNy42MjEzNCAxMC41ODczVjIuNjkyOTlaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPHBhdGggZD0iTTIzLjQzMzUgMi4xNDgxMUMyMS4yODY5IDAuOTkyOTg2IDE4LjkwMDEgMC4zNTUyMjYgMTYuNDYzMiAwLjI4NTcwNlY2LjE0MDY5TDIzLjQzMzUgMi4xNDgxMVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0wLjI4NTcxMyAxNi41NTE3QzAuMzY3MDg1IDE4Ljk3NTQgMS4wMTAyMyAyMS4zNDcxIDIuMTY0NDcgMjMuNDc5OUw3LjIxMzk2IDIwLjU1NTlMMC4yODU3MTMgMTYuNTUxN1oiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yLjE2NDQ3IDguNTE5OTZDMS4wMTM4NCAxMC42NDMzIDAuMzcwODMzIDEzLjAwNDMgMC4yODU3MTMgMTUuNDE3OEw3LjIyMDk3IDExLjQzOTNMMi4xNjQ0NyA4LjUxOTk2WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTguNjE1NDQgMjkuODgyMkMxMC43NDY5IDMxLjAxODkgMTMuMTEyOCAzMS42NDYxIDE1LjUyNzQgMzEuNzE0M1YyNS45MjkxTDguNjE1NDQgMjkuODgyMloiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuOCIvPgo8cGF0aCBkPSJNMjkuMzY3NSA3LjczNTM5QzI4LjExNDMgNS43MTM5NiAyNi40MjA4IDQuMDAxNDcgMjQuNDEzNiAyLjcyNTQzVjEwLjU5ODdMMjkuMzY3NSA3LjczNTM5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTI0LjQxMzYgMjkuMjc5MUMyNi40MzEyIDI3Ljk5NCAyOC4xMzE0IDI2LjI2ODQgMjkuMzg2MyAyNC4yMzIxTDI0LjQxMzYgMjEuMzU5MVYyOS4yNzkxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTMxLjcxNDMgMTUuMzczOEMzMS42MjUxIDEyLjk4MzUgMzAuOTg3OSAxMC42NDU4IDI5Ljg1MTggOC41NDEwMkwyNC44NDQxIDExLjQzMjVMMzEuNzE0MyAxNS4zNzM4WiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC44Ii8+CjxwYXRoIGQ9Ik0xNi40NjMyIDMxLjcxNDNDMTguODcyNSAzMS42NDY3IDIxLjIzMzMgMzEuMDIyOSAyMy4zNjEzIDI5Ljg5MTRMMTYuNDYzMiAyNS44OTQyVjMxLjcxNDNaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNy42MjE0MSAxOS43MTFWMTIuMjg5MkwxLjE3NzM4IDE1Ljk4MzhMNy42MjE0MSAxOS43MTFaIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjgiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zNl84MCI+CjxyZWN0IHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "0", "backgroundImageOpacity": "0", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "cyto-test", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "7b927235-973e-4f7c-842d-6b09cca3feb1": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "1000", "zIndex": "1000", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "network-policy-iw", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "10px", "width": "10px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "network-policy-iw", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "12c07bb9-3675-4f89-90de-34edde07e823": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10004", "zIndex": "10004", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "pod-qq", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "round-rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgaGVpZ2h0PSIyMCIgd2lkdGg9IjIwIj48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik05MTcuNyAxNDguOGwtNDIuNC00Mi40Yy0xLjYtMS42LTMuNi0yLjMtNS43LTIuM3MtNC4xLjgtNS43IDIuM2wtNzYuMSA3Ni4xYTE5OS4yNyAxOTkuMjcgMCAwIDAtMTEyLjEtMzQuM2MtNTEuMiAwLTEwMi40IDE5LjUtMTQxLjUgNTguNkw0MzIuMyAzMDguN2E4LjAzIDguMDMgMCAwIDAgMCAxMS4zTDcwNCA1OTEuN2MxLjYgMS42IDMuNiAyLjMgNS43IDIuMyAyIDAgNC4xLS44IDUuNy0yLjNsMTAxLjktMTAxLjljNjguOS02OSA3Ny0xNzUuNyAyNC4zLTI1My41bDc2LjEtNzYuMWMzLjEtMy4yIDMuMS04LjMgMC0xMS40ek01NzguOSA1NDYuN2E4LjAzIDguMDMgMCAwIDAtMTEuMyAwTDUwMSA2MTMuMyA0MTAuNyA1MjNsNjYuNy02Ni43YzMuMS0zLjEgMy4xLTguMiAwLTExLjNMNDQxIDQwOC42YTguMDMgOC4wMyAwIDAgMC0xMS4zIDBMMzYzIDQ3NS4zbC00My00M2E3Ljg1IDcuODUgMCAwIDAtNS43LTIuM2MtMiAwLTQuMS44LTUuNyAyLjNMMjA2LjggNTM0LjJjLTY4LjkgNjguOS03NyAxNzUuNy0yNC4zIDI1My41bC03Ni4xIDc2LjFhOC4wMyA4LjAzIDAgMCAwIDAgMTEuM2w0Mi40IDQyLjRjMS42IDEuNiAzLjYgMi4zIDUuNyAyLjNzNC4xLS44IDUuNy0yLjNsNzYuMS03Ni4xYzMzLjcgMjIuOSA3Mi45IDM0LjMgMTEyLjEgMzQuMyA1MS4yIDAgMTAyLjQtMTkuNSAxNDEuNS01OC42bDEwMS45LTEwMS45YzMuMS0zLjEgMy4xLTguMiAwLTExLjNsLTQzLTQzIDY2LjctNjYuN2MzLjEtMy4xIDMuMS04LjIgMC0xMS4zbC0zNi42LTM2LjJ6Ij48L3BhdGg+PC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgaGVpZ2h0PSIyMCIgd2lkdGg9IjIwIj48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik05MTcuNyAxNDguOGwtNDIuNC00Mi40Yy0xLjYtMS42LTMuNi0yLjMtNS43LTIuM3MtNC4xLjgtNS43IDIuM2wtNzYuMSA3Ni4xYTE5OS4yNyAxOTkuMjcgMCAwIDAtMTEyLjEtMzQuM2MtNTEuMiAwLTEwMi40IDE5LjUtMTQxLjUgNTguNkw0MzIuMyAzMDguN2E4LjAzIDguMDMgMCAwIDAgMCAxMS4zTDcwNCA1OTEuN2MxLjYgMS42IDMuNiAyLjMgNS43IDIuMyAyIDAgNC4xLS44IDUuNy0yLjNsMTAxLjktMTAxLjljNjguOS02OSA3Ny0xNzUuNyAyNC4zLTI1My41bDc2LjEtNzYuMWMzLjEtMy4yIDMuMS04LjMgMC0xMS40ek01NzguOSA1NDYuN2E4LjAzIDguMDMgMCAwIDAtMTEuMyAwTDUwMSA2MTMuMyA0MTAuNyA1MjNsNjYuNy02Ni43YzMuMS0zLjEgMy4xLTguMiAwLTExLjNMNDQxIDQwOC42YTguMDMgOC4wMyAwIDAgMC0xMS4zIDBMMzYzIDQ3NS4zbC00My00M2E3Ljg1IDcuODUgMCAwIDAtNS43LTIuM2MtMiAwLTQuMS44LTUuNyAyLjNMMjA2LjggNTM0LjJjLTY4LjkgNjguOS03NyAxNzUuNy0yNC4zIDI1My41bC03Ni4xIDc2LjFhOC4wMyA4LjAzIDAgMCAwIDAgMTEuM2w0Mi40IDQyLjRjMS42IDEuNiAzLjYgMi4zIDUuNyAyLjNzNC4xLS44IDUuNy0yLjNsNzYuMS03Ni4xYzMzLjcgMjIuOSA3Mi45IDM0LjMgMTEyLjEgMzQuMyA1MS4yIDAgMTAyLjQtMTkuNSAxNDEuNS01OC42bDEwMS45LTEwMS45YzMuMS0zLjEgMy4xLTguMiAwLTExLjNsLTQzLTQzIDY2LjctNjYuN2MzLjEtMy4xIDMuMS04LjIgMC0xMS4zbC0zNi42LTM2LjJ6Ij48L3BhdGg+PC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "pod-qq", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "5590f9f7-37be-4fa7-b18d-10d1f39fdcaf": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10012", "zIndex": "10012", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20", "width": "20", "shape": "rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(0,179,159)", "backgroundColor": "rgb(0,179,159)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "0.1", "backgroundOpacity": "0.1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,214,190)", "borderColor": "rgb(0,214,190)", "border-opacity": "1", "borderOpacity": "1", "border-width": "1px", "borderWidth": "1px", "border-style": "dashed", "borderStyle": "dashed", "background-image": "url(none)", "backgroundImage": "url(none)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "0", "backgroundImageOpacity": "0", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "ab3a00d2-6fc0-4cdb-85d1-88ab0e435873": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "0", "text-opacity": "0", "textOpacity": "0", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10013", "zIndex": "10013", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "40", "width": "40", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(0,179,159)", "backgroundColor": "rgb(0,179,159)", "background-fill": "linear-gradient", "backgroundFill": "linear-gradient", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(206,212,218) rgb(222,226,230)", "backgroundGradientStopColors": "rgb(206,212,218) rgb(222,226,230)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,211,169)", "borderColor": "rgb(0,211,169)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(none)", "backgroundImage": "url(none)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "3bc06654-0d47-4d13-a389-7f6fd86f0691": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10003", "zIndex": "10003", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "pod", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "round-rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgaGVpZ2h0PSIyMCIgd2lkdGg9IjIwIj48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik05MTcuNyAxNDguOGwtNDIuNC00Mi40Yy0xLjYtMS42LTMuNi0yLjMtNS43LTIuM3MtNC4xLjgtNS43IDIuM2wtNzYuMSA3Ni4xYTE5OS4yNyAxOTkuMjcgMCAwIDAtMTEyLjEtMzQuM2MtNTEuMiAwLTEwMi40IDE5LjUtMTQxLjUgNTguNkw0MzIuMyAzMDguN2E4LjAzIDguMDMgMCAwIDAgMCAxMS4zTDcwNCA1OTEuN2MxLjYgMS42IDMuNiAyLjMgNS43IDIuMyAyIDAgNC4xLS44IDUuNy0yLjNsMTAxLjktMTAxLjljNjguOS02OSA3Ny0xNzUuNyAyNC4zLTI1My41bDc2LjEtNzYuMWMzLjEtMy4yIDMuMS04LjMgMC0xMS40ek01NzguOSA1NDYuN2E4LjAzIDguMDMgMCAwIDAtMTEuMyAwTDUwMSA2MTMuMyA0MTAuNyA1MjNsNjYuNy02Ni43YzMuMS0zLjEgMy4xLTguMiAwLTExLjNMNDQxIDQwOC42YTguMDMgOC4wMyAwIDAgMC0xMS4zIDBMMzYzIDQ3NS4zbC00My00M2E3Ljg1IDcuODUgMCAwIDAtNS43LTIuM2MtMiAwLTQuMS44LTUuNyAyLjNMMjA2LjggNTM0LjJjLTY4LjkgNjguOS03NyAxNzUuNy0yNC4zIDI1My41bC03Ni4xIDc2LjFhOC4wMyA4LjAzIDAgMCAwIDAgMTEuM2w0Mi40IDQyLjRjMS42IDEuNiAzLjYgMi4zIDUuNyAyLjNzNC4xLS44IDUuNy0yLjNsNzYuMS03Ni4xYzMzLjcgMjIuOSA3Mi45IDM0LjMgMTEyLjEgMzQuMyA1MS4yIDAgMTAyLjQtMTkuNSAxNDEuNS01OC42bDEwMS45LTEwMS45YzMuMS0zLjEgMy4xLTguMiAwLTExLjNsLTQzLTQzIDY2LjctNjYuN2MzLjEtMy4xIDMuMS04LjIgMC0xMS4zbC0zNi42LTM2LjJ6Ij48L3BhdGg+PC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgaGVpZ2h0PSIyMCIgd2lkdGg9IjIwIj48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik05MTcuNyAxNDguOGwtNDIuNC00Mi40Yy0xLjYtMS42LTMuNi0yLjMtNS43LTIuM3MtNC4xLjgtNS43IDIuM2wtNzYuMSA3Ni4xYTE5OS4yNyAxOTkuMjcgMCAwIDAtMTEyLjEtMzQuM2MtNTEuMiAwLTEwMi40IDE5LjUtMTQxLjUgNTguNkw0MzIuMyAzMDguN2E4LjAzIDguMDMgMCAwIDAgMCAxMS4zTDcwNCA1OTEuN2MxLjYgMS42IDMuNiAyLjMgNS43IDIuMyAyIDAgNC4xLS44IDUuNy0yLjNsMTAxLjktMTAxLjljNjguOS02OSA3Ny0xNzUuNyAyNC4zLTI1My41bDc2LjEtNzYuMWMzLjEtMy4yIDMuMS04LjMgMC0xMS40ek01NzguOSA1NDYuN2E4LjAzIDguMDMgMCAwIDAtMTEuMyAwTDUwMSA2MTMuMyA0MTAuNyA1MjNsNjYuNy02Ni43YzMuMS0zLjEgMy4xLTguMiAwLTExLjNMNDQxIDQwOC42YTguMDMgOC4wMyAwIDAgMC0xMS4zIDBMMzYzIDQ3NS4zbC00My00M2E3Ljg1IDcuODUgMCAwIDAtNS43LTIuM2MtMiAwLTQuMS44LTUuNyAyLjNMMjA2LjggNTM0LjJjLTY4LjkgNjguOS03NyAxNzUuNy0yNC4zIDI1My41bC03Ni4xIDc2LjFhOC4wMyA4LjAzIDAgMCAwIDAgMTEuM2w0Mi40IDQyLjRjMS42IDEuNiAzLjYgMi4zIDUuNyAyLjNzNC4xLS44IDUuNy0yLjNsNzYuMS03Ni4xYzMzLjcgMjIuOSA3Mi45IDM0LjMgMTEyLjEgMzQuMyA1MS4yIDAgMTAyLjQtMTkuNSAxNDEuNS01OC42bDEwMS45LTEwMS45YzMuMS0zLjEgMy4xLTguMiAwLTExLjNsLTQzLTQzIDY2LjctNjYuN2MzLjEtMy4xIDMuMS04LjIgMC0xMS4zbC0zNi42LTM2LjJ6Ij48L3BhdGg+PC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "pod", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "abcce4d1-0b59-4b62-a6c1-42f92b4693dd": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10009", "zIndex": "10009", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "chaos-jq", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(242,111,35)", "backgroundColor": "rgb(242,111,35)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(255,133,42)", "borderColor": "rgb(255,133,42)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "chaos-jq", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "42f6f900-9677-443d-9dc8-9425d7cf1fb7": { "events": "yes", "text-events": "no", "textEvents": "no", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "12px", "minZoomedFontSize": "12px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "10008", "zIndex": "10008", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "bottom", "textValign": "bottom", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(0,0,0)", "textOutlineColor": "rgb(0,0,0)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(210,212,210)", "textBackgroundColor": "rgb(210,212,210)", "text-background-opacity": "0.7", "textBackgroundOpacity": "0.7", "text-background-padding": "2px", "textBackgroundPadding": "2px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "round-rectangle", "textBackgroundShape": "round-rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "300", "fontWeight": "300", "font-size": "8px", "fontSize": "8px", "text-transform": "none", "textTransform": "none", "text-wrap": "ellipsis", "textWrap": "ellipsis", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "50px", "textMaxWidth": "50px", "text-outline-width": "0px", "textOutlineWidth": "0px", "line-height": "1", "lineHeight": "1", "label": "pod-pw", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "7px", "textMarginY": "7px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "20px", "width": "20px", "shape": "round-rectangle", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(50,108,229)", "backgroundColor": "rgb(50,108,229)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "6px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(60,129,255)", "borderColor": "rgb(60,129,255)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", "backgroundImage": "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "inner", "backgroundWidthRelativeTo": "inner", "background-height-relative-to": "inner", "backgroundHeightRelativeTo": "inner", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "cover", "backgroundFit": "cover", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "solid", "lineStyle": "solid", "line-color": "rgb(153,153,153)", "lineColor": "rgb(153,153,153)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "haystack", "curveStyle": "haystack", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "none", "targetArrowShape": "none", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "pod-pw", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "6px", "paddingLeft": "6px", "padding-right": "6px", "paddingRight": "6px", "padding-top": "6px", "paddingTop": "6px", "padding-bottom": "6px", "paddingBottom": "6px" }, "ce358fa7-8545-4642-8dce-5cc50f3c6ab7": { "events": "yes", "text-events": "yes", "textEvents": "yes", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "0px", "minZoomedFontSize": "0px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "999", "zIndex": "999", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "top", "textValign": "top", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(255,255,255)", "textOutlineColor": "rgb(255,255,255)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(0,0,0)", "textBackgroundColor": "rgb(0,0,0)", "text-background-opacity": "0", "textBackgroundOpacity": "0", "text-background-padding": "0px", "textBackgroundPadding": "0px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "rectangle", "textBackgroundShape": "rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "normal", "fontWeight": "normal", "font-size": "6px", "fontSize": "6px", "text-transform": "none", "textTransform": "none", "text-wrap": "wrap", "textWrap": "wrap", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "9999px", "textMaxWidth": "9999px", "text-outline-width": "1px", "textOutlineWidth": "1px", "line-height": "1", "lineHeight": "1", "label": "", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "0px", "textMarginY": "0px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "30px", "width": "1.5px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(153,153,153)", "backgroundColor": "rgb(153,153,153)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "0px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,0,0)", "borderColor": "rgb(0,0,0)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(none)", "backgroundImage": "url(none)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "include-padding", "backgroundWidthRelativeTo": "include-padding", "background-height-relative-to": "include-padding", "backgroundHeightRelativeTo": "include-padding", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "none", "backgroundFit": "none", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "dotted", "lineStyle": "dotted", "line-color": "rgb(122,161,240)", "lineColor": "rgb(122,161,240)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "bezier", "curveStyle": "bezier", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "vee", "targetArrowShape": "vee", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "0px", "paddingLeft": "0px", "padding-right": "0px", "paddingRight": "0px", "padding-top": "0px", "paddingTop": "0px", "padding-bottom": "0px", "paddingBottom": "0px" }, "a0bc571a-cb46-416e-8010-a31f2ccc7f8c": { "events": "yes", "text-events": "yes", "textEvents": "yes", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "0px", "minZoomedFontSize": "0px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "999", "zIndex": "999", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "top", "textValign": "top", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(255,255,255)", "textOutlineColor": "rgb(255,255,255)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(0,0,0)", "textBackgroundColor": "rgb(0,0,0)", "text-background-opacity": "0", "textBackgroundOpacity": "0", "text-background-padding": "0px", "textBackgroundPadding": "0px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "rectangle", "textBackgroundShape": "rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "normal", "fontWeight": "normal", "font-size": "6px", "fontSize": "6px", "text-transform": "none", "textTransform": "none", "text-wrap": "wrap", "textWrap": "wrap", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "9999px", "textMaxWidth": "9999px", "text-outline-width": "1px", "textOutlineWidth": "1px", "line-height": "1", "lineHeight": "1", "label": "", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "0px", "textMarginY": "0px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "30px", "width": "1.5px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(153,153,153)", "backgroundColor": "rgb(153,153,153)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "0px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,0,0)", "borderColor": "rgb(0,0,0)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(none)", "backgroundImage": "url(none)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "include-padding", "backgroundWidthRelativeTo": "include-padding", "background-height-relative-to": "include-padding", "backgroundHeightRelativeTo": "include-padding", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "none", "backgroundFit": "none", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "dotted", "lineStyle": "dotted", "line-color": "rgb(122,161,240)", "lineColor": "rgb(122,161,240)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "bezier", "curveStyle": "bezier", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "vee", "targetArrowShape": "vee", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "0px", "paddingLeft": "0px", "padding-right": "0px", "paddingRight": "0px", "padding-top": "0px", "paddingTop": "0px", "padding-bottom": "0px", "paddingBottom": "0px" }, "03784737-f118-4ec0-9e20-657800a1d10b": { "events": "yes", "text-events": "yes", "textEvents": "yes", "transition-property": "none", "transitionProperty": "none", "transition-duration": "0ms", "transitionDuration": "0ms", "transition-delay": "0ms", "transitionDelay": "0ms", "transition-timing-function": "linear", "transitionTimingFunction": "linear", "display": "element", "visibility": "visible", "opacity": "1", "text-opacity": "1", "textOpacity": "1", "min-zoomed-font-size": "0px", "minZoomedFontSize": "0px", "z-compound-depth": "auto", "zCompoundDepth": "auto", "z-index-compare": "manual", "zIndexCompare": "manual", "z-index": "999", "zIndex": "999", "overlay-padding": "10px", "overlayPadding": "10px", "overlay-color": "rgb(0,0,0)", "overlayColor": "rgb(0,0,0)", "overlay-opacity": "0", "overlayOpacity": "0", "overlay-shape": "round-rectangle", "overlayShape": "round-rectangle", "underlay-padding": "10px", "underlayPadding": "10px", "underlay-color": "rgb(0,0,0)", "underlayColor": "rgb(0,0,0)", "underlay-opacity": "0", "underlayOpacity": "0", "underlay-shape": "round-rectangle", "underlayShape": "round-rectangle", "ghost": "no", "ghost-offset-x": "0px", "ghostOffsetX": "0px", "ghost-offset-y": "0px", "ghostOffsetY": "0px", "ghost-opacity": "0", "ghostOpacity": "0", "text-valign": "top", "textValign": "top", "text-halign": "center", "textHalign": "center", "color": "rgb(0,0,0)", "text-outline-color": "rgb(255,255,255)", "textOutlineColor": "rgb(255,255,255)", "text-outline-opacity": "1", "textOutlineOpacity": "1", "text-background-color": "rgb(0,0,0)", "textBackgroundColor": "rgb(0,0,0)", "text-background-opacity": "0", "textBackgroundOpacity": "0", "text-background-padding": "0px", "textBackgroundPadding": "0px", "text-border-opacity": "0", "textBorderOpacity": "0", "text-border-color": "rgb(0,0,0)", "textBorderColor": "rgb(0,0,0)", "text-border-width": "0px", "textBorderWidth": "0px", "text-border-style": "solid", "textBorderStyle": "solid", "text-background-shape": "rectangle", "textBackgroundShape": "rectangle", "text-justification": "auto", "textJustification": "auto", "font-family": "Qanelas Soft, sans-serif", "fontFamily": "Qanelas Soft, sans-serif", "font-style": "normal", "fontStyle": "normal", "font-weight": "normal", "fontWeight": "normal", "font-size": "6px", "fontSize": "6px", "text-transform": "none", "textTransform": "none", "text-wrap": "wrap", "textWrap": "wrap", "text-overflow-wrap": "whitespace", "textOverflowWrap": "whitespace", "text-max-width": "9999px", "textMaxWidth": "9999px", "text-outline-width": "1px", "textOutlineWidth": "1px", "line-height": "1", "lineHeight": "1", "label": "", "text-rotation": "none", "textRotation": "none", "text-margin-x": "0px", "textMarginX": "0px", "text-margin-y": "0px", "textMarginY": "0px", "source-label": "", "sourceLabel": "", "source-text-rotation": "none", "sourceTextRotation": "none", "source-text-margin-x": "0px", "sourceTextMarginX": "0px", "source-text-margin-y": "0px", "sourceTextMarginY": "0px", "source-text-offset": "0px", "sourceTextOffset": "0px", "target-label": "", "targetLabel": "", "target-text-rotation": "none", "targetTextRotation": "none", "target-text-margin-x": "0px", "targetTextMarginX": "0px", "target-text-margin-y": "0px", "targetTextMarginY": "0px", "target-text-offset": "0px", "targetTextOffset": "0px", "height": "30px", "width": "1.5px", "shape": "ellipse", "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", "shapePolygonPoints": "-1 -1 1 -1 1 1 -1 1", "background-color": "rgb(153,153,153)", "backgroundColor": "rgb(153,153,153)", "background-fill": "solid", "backgroundFill": "solid", "background-opacity": "1", "backgroundOpacity": "1", "background-blacken": "0", "backgroundBlacken": "0", "background-gradient-stop-colors": "rgb(153,153,153)", "backgroundGradientStopColors": "rgb(153,153,153)", "background-gradient-stop-positions": "0%", "backgroundGradientStopPositions": "0%", "background-gradient-direction": "to-bottom", "backgroundGradientDirection": "to-bottom", "padding": "0px", "padding-relative-to": "width", "paddingRelativeTo": "width", "bounds-expansion": "0px", "boundsExpansion": "0px", "border-color": "rgb(0,0,0)", "borderColor": "rgb(0,0,0)", "border-opacity": "1", "borderOpacity": "1", "border-width": "0px", "borderWidth": "0px", "border-style": "solid", "borderStyle": "solid", "background-image": "url(none)", "backgroundImage": "url(none)", "background-image-crossorigin": "anonymous", "backgroundImageCrossorigin": "anonymous", "background-image-opacity": "1", "backgroundImageOpacity": "1", "background-image-containment": "inside", "backgroundImageContainment": "inside", "background-image-smoothing": "yes", "backgroundImageSmoothing": "yes", "background-position-x": "50%", "backgroundPositionX": "50%", "background-position-y": "50%", "backgroundPositionY": "50%", "background-width-relative-to": "include-padding", "backgroundWidthRelativeTo": "include-padding", "background-height-relative-to": "include-padding", "backgroundHeightRelativeTo": "include-padding", "background-repeat": "no-repeat", "backgroundRepeat": "no-repeat", "background-fit": "none", "backgroundFit": "none", "background-clip": "node", "backgroundClip": "node", "background-width": "auto", "backgroundWidth": "auto", "background-height": "auto", "backgroundHeight": "auto", "background-offset-x": "0px", "backgroundOffsetX": "0px", "background-offset-y": "0px", "backgroundOffsetY": "0px", "pie-size": "100%", "pieSize": "100%", "pie-1-background-color": "rgb(0,0,0)", "pie1BackgroundColor": "rgb(0,0,0)", "pie-1-background-size": "0%", "pie1BackgroundSize": "0%", "pie-1-background-opacity": "1", "pie1BackgroundOpacity": "1", "pie-2-background-color": "rgb(0,0,0)", "pie2BackgroundColor": "rgb(0,0,0)", "pie-2-background-size": "0%", "pie2BackgroundSize": "0%", "pie-2-background-opacity": "1", "pie2BackgroundOpacity": "1", "pie-3-background-color": "rgb(0,0,0)", "pie3BackgroundColor": "rgb(0,0,0)", "pie-3-background-size": "0%", "pie3BackgroundSize": "0%", "pie-3-background-opacity": "1", "pie3BackgroundOpacity": "1", "pie-4-background-color": "rgb(0,0,0)", "pie4BackgroundColor": "rgb(0,0,0)", "pie-4-background-size": "0%", "pie4BackgroundSize": "0%", "pie-4-background-opacity": "1", "pie4BackgroundOpacity": "1", "pie-5-background-color": "rgb(0,0,0)", "pie5BackgroundColor": "rgb(0,0,0)", "pie-5-background-size": "0%", "pie5BackgroundSize": "0%", "pie-5-background-opacity": "1", "pie5BackgroundOpacity": "1", "pie-6-background-color": "rgb(0,0,0)", "pie6BackgroundColor": "rgb(0,0,0)", "pie-6-background-size": "0%", "pie6BackgroundSize": "0%", "pie-6-background-opacity": "1", "pie6BackgroundOpacity": "1", "pie-7-background-color": "rgb(0,0,0)", "pie7BackgroundColor": "rgb(0,0,0)", "pie-7-background-size": "0%", "pie7BackgroundSize": "0%", "pie-7-background-opacity": "1", "pie7BackgroundOpacity": "1", "pie-8-background-color": "rgb(0,0,0)", "pie8BackgroundColor": "rgb(0,0,0)", "pie-8-background-size": "0%", "pie8BackgroundSize": "0%", "pie-8-background-opacity": "1", "pie8BackgroundOpacity": "1", "pie-9-background-color": "rgb(0,0,0)", "pie9BackgroundColor": "rgb(0,0,0)", "pie-9-background-size": "0%", "pie9BackgroundSize": "0%", "pie-9-background-opacity": "1", "pie9BackgroundOpacity": "1", "pie-10-background-color": "rgb(0,0,0)", "pie10BackgroundColor": "rgb(0,0,0)", "pie-10-background-size": "0%", "pie10BackgroundSize": "0%", "pie-10-background-opacity": "1", "pie10BackgroundOpacity": "1", "pie-11-background-color": "rgb(0,0,0)", "pie11BackgroundColor": "rgb(0,0,0)", "pie-11-background-size": "0%", "pie11BackgroundSize": "0%", "pie-11-background-opacity": "1", "pie11BackgroundOpacity": "1", "pie-12-background-color": "rgb(0,0,0)", "pie12BackgroundColor": "rgb(0,0,0)", "pie-12-background-size": "0%", "pie12BackgroundSize": "0%", "pie-12-background-opacity": "1", "pie12BackgroundOpacity": "1", "pie-13-background-color": "rgb(0,0,0)", "pie13BackgroundColor": "rgb(0,0,0)", "pie-13-background-size": "0%", "pie13BackgroundSize": "0%", "pie-13-background-opacity": "1", "pie13BackgroundOpacity": "1", "pie-14-background-color": "rgb(0,0,0)", "pie14BackgroundColor": "rgb(0,0,0)", "pie-14-background-size": "0%", "pie14BackgroundSize": "0%", "pie-14-background-opacity": "1", "pie14BackgroundOpacity": "1", "pie-15-background-color": "rgb(0,0,0)", "pie15BackgroundColor": "rgb(0,0,0)", "pie-15-background-size": "0%", "pie15BackgroundSize": "0%", "pie-15-background-opacity": "1", "pie15BackgroundOpacity": "1", "pie-16-background-color": "rgb(0,0,0)", "pie16BackgroundColor": "rgb(0,0,0)", "pie-16-background-size": "0%", "pie16BackgroundSize": "0%", "pie-16-background-opacity": "1", "pie16BackgroundOpacity": "1", "position": "origin", "compound-sizing-wrt-labels": "include", "compoundSizingWrtLabels": "include", "min-width": "0px", "minWidth": "0px", "min-width-bias-left": "0px", "minWidthBiasLeft": "0px", "min-width-bias-right": "0px", "minWidthBiasRight": "0px", "min-height": "0px", "minHeight": "0px", "min-height-bias-top": "0px", "minHeightBiasTop": "0px", "min-height-bias-bottom": "0px", "minHeightBiasBottom": "0px", "line-style": "dotted", "lineStyle": "dotted", "line-color": "rgb(122,161,240)", "lineColor": "rgb(122,161,240)", "line-fill": "solid", "lineFill": "solid", "line-cap": "butt", "lineCap": "butt", "line-opacity": "1", "lineOpacity": "1", "line-dash-pattern": "6 3", "lineDashPattern": "6 3", "line-dash-offset": "0", "lineDashOffset": "0", "line-gradient-stop-colors": "rgb(153,153,153)", "lineGradientStopColors": "rgb(153,153,153)", "line-gradient-stop-positions": "0%", "lineGradientStopPositions": "0%", "curve-style": "bezier", "curveStyle": "bezier", "haystack-radius": "0", "haystackRadius": "0", "source-endpoint": "outside-to-node", "sourceEndpoint": "outside-to-node", "target-endpoint": "outside-to-node", "targetEndpoint": "outside-to-node", "control-point-step-size": "40px", "controlPointStepSize": "40px", "control-point-weights": "0.5", "controlPointWeights": "0.5", "segment-distances": "20px", "segmentDistances": "20px", "segment-weights": "0.5", "segmentWeights": "0.5", "taxi-turn": "50%", "taxiTurn": "50%", "taxi-turn-min-distance": "10px", "taxiTurnMinDistance": "10px", "taxi-direction": "auto", "taxiDirection": "auto", "edge-distances": "intersection", "edgeDistances": "intersection", "arrow-scale": "1", "arrowScale": "1", "loop-direction": "-45deg", "loopDirection": "-45deg", "loop-sweep": "-90deg", "loopSweep": "-90deg", "source-distance-from-node": "0px", "sourceDistanceFromNode": "0px", "target-distance-from-node": "0px", "targetDistanceFromNode": "0px", "source-arrow-shape": "none", "sourceArrowShape": "none", "mid-source-arrow-shape": "none", "midSourceArrowShape": "none", "target-arrow-shape": "vee", "targetArrowShape": "vee", "mid-target-arrow-shape": "none", "midTargetArrowShape": "none", "source-arrow-color": "rgb(153,153,153)", "sourceArrowColor": "rgb(153,153,153)", "mid-source-arrow-color": "rgb(153,153,153)", "midSourceArrowColor": "rgb(153,153,153)", "target-arrow-color": "rgb(153,153,153)", "targetArrowColor": "rgb(153,153,153)", "mid-target-arrow-color": "rgb(153,153,153)", "midTargetArrowColor": "rgb(153,153,153)", "source-arrow-fill": "filled", "sourceArrowFill": "filled", "mid-source-arrow-fill": "filled", "midSourceArrowFill": "filled", "target-arrow-fill": "filled", "targetArrowFill": "filled", "mid-target-arrow-fill": "filled", "midTargetArrowFill": "filled", "selection-box-color": "rgb(221,221,221)", "selectionBoxColor": "rgb(221,221,221)", "selection-box-opacity": "0.65", "selectionBoxOpacity": "0.65", "selection-box-border-color": "rgb(170,170,170)", "selectionBoxBorderColor": "rgb(170,170,170)", "selection-box-border-width": "1px", "selectionBoxBorderWidth": "1px", "active-bg-color": "rgb(0,0,0)", "activeBgColor": "rgb(0,0,0)", "active-bg-opacity": "0.15", "activeBgOpacity": "0.15", "active-bg-size": "30px", "activeBgSize": "30px", "outside-texture-bg-color": "rgb(0,0,0)", "outsideTextureBgColor": "rgb(0,0,0)", "outside-texture-bg-opacity": "0.125", "outsideTextureBgOpacity": "0.125", "content": "", "control-point-weight": "0.5", "controlPointWeight": "0.5", "edge-text-rotation": "none", "edgeTextRotation": "none", "padding-left": "0px", "paddingLeft": "0px", "padding-right": "0px", "paddingRight": "0px", "padding-top": "0px", "paddingTop": "0px", "padding-bottom": "0px", "paddingBottom": "0px" } } }; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-142f0054-d9ae-4352-8618-887104a81928 .embed-canvas-container { + height: 100%; + width: 100%; + } + + + #embedded-design-142f0054-d9ae-4352-8618-887104a81928 { + /* Dark theme */ + --dark-background: #1A1A1A;; + --dark-foregeound: #fff; + /* Light theme */ + --light-background: #fff; + --light-foregeound: #1A1A1A;; + /* Defaults */ + --current-background: var(--light-background); + --current-foreground: var(--light-foregeound); + background: var(--current-background); + } + #embedded-design-142f0054-d9ae-4352-8618-887104a81928 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : var(--current-foreground) !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-142f0054-d9ae-4352-8618-887104a81928 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : var(--current-foreground); + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + @media (prefers-color-scheme: dark) { + #embedded-design-142f0054-d9ae-4352-8618-887104a81928 { + --current-background: var(--dark-background); + --current-foreground: var(--dark-foregeound); + } + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById("embedded-design-142f0054-d9ae-4352-8618-887104a81928"); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + Powered By + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById("embedded-design-142f0054-d9ae-4352-8618-887104a81928"); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-142f0054-d9ae-4352-8618-887104a81928-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById("embedded-design-142f0054-d9ae-4352-8618-887104a81928-cy"), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset", + }, + elements: data.elements, + style: data.style, + })); + + Object.keys(data.elementStyles).forEach((id) => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); + +}); \ No newline at end of file diff --git a/src/assets/images/learning-path/embed-test/embedded-design-dapr-architecture.js b/src/assets/images/learning-path/embed-test/embedded-design-dapr-architecture.js new file mode 100644 index 000000000000..06408f630c8d --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-dapr-architecture.js @@ -0,0 +1,11305 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f", + label: "Section", + type: "Section", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f": { + settings: { name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "eb737818-c50a-4905-898f-b92d32dd774e", + source: "bfb77120-0e02-4230-8006-df9e0c5f9114", + subType: "Annotation", + target: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + }, + { + data: { + id: "8a440141-95cc-4a54-b01f-4f14b809818d", + source: "afaa487a-076c-4cee-9510-570d67d75b4f", + subType: "Annotation", + target: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "da3419da-d6c1-54c2-8aa2-e550a3d5f1c3", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(147,152,176)", + "background-image": "none", + "background-opacity": 0.1, + "border-style": "dashed", + "border-width": "0px", + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 19 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: -175.58637971030635, posY: -284.95453433709366 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: -175.58637971030635, y: -284.95453433709366 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ce761f19-b7b1-433d-83c4-6eb874380030", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "nodeapp", + services: { + "ce761f19-b7b1-433d-83c4-6eb874380030": { + namespace: "default", + settings: { + spec: { + ports: [{ port: 80, protocol: "TCP", "target Port": 3000 }], + selector: { app: "node" }, + type: "LoadBalancer" + }, + name: "nodeapp", + namespace: "default", + labels: { app: "node" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "298816f9-9720-4581-970c-6e96492e3365", + metadata: { port: 80, protocol: "TCP" }, + source: "ce761f19-b7b1-433d-83c4-6eb874380030", + subType: "Network", + target: "8cb14ecd-d658-4ffa-bf94-beffb65c1837" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ce761f19-b7b1-433d-83c4-6eb874380030", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 15 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -719.19810352028, posY: -233.49533623250176 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -719.19810352028, y: -233.49533623250176 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8cb14ecd-d658-4ffa-bf94-beffb65c1837", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "nodeapp", + services: { + "8cb14ecd-d658-4ffa-bf94-beffb65c1837": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "node" } }, + template: { + metadata: { + annotations: { + "dapr.io/app-id": "nodeapp", + "dapr.io/app-port": "3000", + "dapr.io/enable-api-logging": "true", + "dapr.io/enabled": "true" + }, + labels: { app: "node" } + }, + spec: { + containers: [ + { + args: [], + command: [], + env: [{ name: "APP_PORT", value: "3000" }], + "env From": [], + image: "nginx:latest", + "image Pull Policy": "Always", + name: "daprd-sidecar", + ports: [{ "container Port": 3000 }], + "volume Devices": [], + "volume Mounts": [] + }, + { + args: [], + command: [], + env: [], + "env From": [], + image: "nginx:latest", + name: "node-app", + ports: [], + "volume Devices": [], + "volume Mounts": [] + } + ] + } + } + }, + name: "nodeapp", + namespace: "default", + labels: { app: "node" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "298816f9-9720-4581-970c-6e96492e3365", + metadata: { port: 80, protocol: "TCP" }, + source: "ce761f19-b7b1-433d-83c4-6eb874380030", + subType: "Network", + target: "8cb14ecd-d658-4ffa-bf94-beffb65c1837" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "8cb14ecd-d658-4ffa-bf94-beffb65c1837", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "active-bg-color": "rgb(0,0,0)", + "active-bg-opacity": "0.15", + "active-bg-size": "30px", + activeBgColor: "rgb(0,0,0)", + activeBgOpacity: "0.15", + activeBgSize: "30px", + "arrow-scale": "1", + arrowScale: "1", + "background-blacken": "0", + "background-clip": "none", + "background-color": "rgb(0,179,159)", + "background-fill": "solid", + "background-fit": "contain", + "background-gradient-direction": "to-bottom", + "background-gradient-stop-colors": "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + "background-height": "auto", + "background-height-relative-to": "inner", + "background-image": + "url(http://localhost:9081/ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg)", + "background-image-containment": "inside", + "background-image-crossorigin": "anonymous", + "background-image-opacity": "0", + "background-image-smoothing": "yes", + "background-offset-x": "0px", + "background-offset-y": "0px", + "background-opacity": 0.3, + "background-position-x": "50%", + "background-position-y": "50%", + "background-repeat": "no-repeat", + "background-width": "auto", + "background-width-relative-to": "inner", + backgroundBlacken: "0", + backgroundClip: "none", + backgroundColor: "rgb(50,108,229)", + backgroundFill: "solid", + backgroundFit: "contain", + backgroundGradientDirection: "to-bottom", + backgroundGradientStopColors: "rgb(153,153,153)", + backgroundGradientStopPositions: "0%", + backgroundHeight: "auto", + backgroundHeightRelativeTo: "inner", + backgroundImage: + "url(http://localhost:9081/ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg)", + backgroundImageContainment: "inside", + backgroundImageCrossorigin: "anonymous", + backgroundImageOpacity: "0", + backgroundImageSmoothing: "yes", + backgroundOffsetX: "0px", + backgroundOffsetY: "0px", + backgroundOpacity: "0.5", + backgroundPositionX: "50%", + backgroundPositionY: "50%", + backgroundRepeat: "no-repeat", + backgroundWidth: "auto", + backgroundWidthRelativeTo: "inner", + "border-color": "rgb(60,129,255)", + "border-opacity": "1", + "border-style": "solid", + "border-width": "2px", + borderColor: "rgb(60,129,255)", + borderOpacity: "1", + borderStyle: "solid", + borderWidth: "2px", + "bounds-expansion": "0px", + boundsExpansion: "0px", + color: "rgb(0,0,0)", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + content: "nodeapp", + "control-point-step-size": "40px", + "control-point-weight": "0.5", + "control-point-weights": "0.5", + controlPointStepSize: "40px", + controlPointWeight: "0.5", + controlPointWeights: "0.5", + "curve-style": "haystack", + curveStyle: "haystack", + display: "element", + "edge-distances": "intersection", + "edge-text-rotation": "none", + edgeDistances: "intersection", + edgeTextRotation: "none", + events: "yes", + "font-family": "Qanelas Soft, sans-serif", + "font-size": "8px", + "font-style": "normal", + "font-weight": "300", + fontFamily: "Qanelas Soft, sans-serif", + fontSize: "8px", + fontStyle: "normal", + fontWeight: "300", + ghost: "no", + "ghost-offset-x": "0px", + "ghost-offset-y": "0px", + "ghost-opacity": "0", + ghostOffsetX: "0px", + ghostOffsetY: "0px", + ghostOpacity: "0", + "haystack-radius": "0", + haystackRadius: "0", + height: "20px", + label: "nodeapp", + "line-cap": "butt", + "line-color": "rgb(153,153,153)", + "line-dash-offset": "0", + "line-dash-pattern": "6 3", + "line-fill": "solid", + "line-gradient-stop-colors": "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + "line-height": "1", + "line-opacity": "1", + "line-style": "solid", + lineCap: "butt", + lineColor: "rgb(153,153,153)", + lineDashOffset: "0", + lineDashPattern: "6 3", + lineFill: "solid", + lineGradientStopColors: "rgb(153,153,153)", + lineGradientStopPositions: "0%", + lineHeight: "1", + lineOpacity: "1", + lineStyle: "solid", + "loop-direction": "-45deg", + "loop-sweep": "-90deg", + loopDirection: "-45deg", + loopSweep: "-90deg", + "mid-source-arrow-color": "rgb(153,153,153)", + "mid-source-arrow-fill": "filled", + "mid-source-arrow-shape": "none", + "mid-source-arrow-width": "1px", + "mid-target-arrow-color": "rgb(153,153,153)", + "mid-target-arrow-fill": "filled", + "mid-target-arrow-shape": "none", + "mid-target-arrow-width": "1px", + midSourceArrowColor: "rgb(153,153,153)", + midSourceArrowFill: "filled", + midSourceArrowShape: "none", + midSourceArrowWidth: "1px", + midTargetArrowColor: "rgb(153,153,153)", + midTargetArrowFill: "filled", + midTargetArrowShape: "none", + midTargetArrowWidth: "1px", + "min-height": "0px", + "min-height-bias-bottom": "0px", + "min-height-bias-top": "0px", + "min-width": "0px", + "min-width-bias-left": "0px", + "min-width-bias-right": "0px", + "min-zoomed-font-size": "12px", + minHeight: "0px", + minHeightBiasBottom: "0px", + minHeightBiasTop: "0px", + minWidth: "0px", + minWidthBiasLeft: "0px", + minWidthBiasRight: "0px", + minZoomedFontSize: "12px", + opacity: "1", + "outline-color": "rgb(153,153,153)", + "outline-offset": "0px", + "outline-opacity": "1", + "outline-style": "solid", + "outline-width": "0px", + outlineColor: "rgb(153,153,153)", + outlineOffset: "0px", + outlineOpacity: "1", + outlineStyle: "solid", + outlineWidth: "0px", + "outside-texture-bg-color": "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgColor: "rgb(0,0,0)", + outsideTextureBgOpacity: "0.125", + "overlay-color": "rgb(0,0,0)", + "overlay-opacity": "0", + "overlay-padding": "10px", + "overlay-shape": "round-rectangle", + overlayColor: "rgb(0,0,0)", + overlayOpacity: "0", + overlayPadding: "10px", + overlayShape: "round-rectangle", + padding: "6px", + "padding-bottom": "6px", + "padding-left": "6px", + "padding-relative-to": "width", + "padding-right": "6px", + "padding-top": "6px", + paddingBottom: "6px", + paddingLeft: "6px", + paddingRelativeTo: "width", + paddingRight: "6px", + paddingTop: "6px", + "pie-1-background-color": "rgb(0,0,0)", + "pie-1-background-opacity": "1", + "pie-1-background-size": "0%", + "pie-10-background-color": "rgb(0,0,0)", + "pie-10-background-opacity": "1", + "pie-10-background-size": "0%", + "pie-11-background-color": "rgb(0,0,0)", + "pie-11-background-opacity": "1", + "pie-11-background-size": "0%", + "pie-12-background-color": "rgb(0,0,0)", + "pie-12-background-opacity": "1", + "pie-12-background-size": "0%", + "pie-13-background-color": "rgb(0,0,0)", + "pie-13-background-opacity": "1", + "pie-13-background-size": "0%", + "pie-14-background-color": "rgb(0,0,0)", + "pie-14-background-opacity": "1", + "pie-14-background-size": "0%", + "pie-15-background-color": "rgb(0,0,0)", + "pie-15-background-opacity": "1", + "pie-15-background-size": "0%", + "pie-16-background-color": "rgb(0,0,0)", + "pie-16-background-opacity": "1", + "pie-16-background-size": "0%", + "pie-2-background-color": "rgb(0,0,0)", + "pie-2-background-opacity": "1", + "pie-2-background-size": "0%", + "pie-3-background-color": "rgb(0,0,0)", + "pie-3-background-opacity": "1", + "pie-3-background-size": "0%", + "pie-4-background-color": "rgb(0,0,0)", + "pie-4-background-opacity": "1", + "pie-4-background-size": "0%", + "pie-5-background-color": "rgb(0,0,0)", + "pie-5-background-opacity": "1", + "pie-5-background-size": "0%", + "pie-6-background-color": "rgb(0,0,0)", + "pie-6-background-opacity": "1", + "pie-6-background-size": "0%", + "pie-7-background-color": "rgb(0,0,0)", + "pie-7-background-opacity": "1", + "pie-7-background-size": "0%", + "pie-8-background-color": "rgb(0,0,0)", + "pie-8-background-opacity": "1", + "pie-8-background-size": "0%", + "pie-9-background-color": "rgb(0,0,0)", + "pie-9-background-opacity": "1", + "pie-9-background-size": "0%", + "pie-size": "100%", + pie10BackgroundColor: "rgb(0,0,0)", + pie10BackgroundOpacity: "1", + pie10BackgroundSize: "0%", + pie11BackgroundColor: "rgb(0,0,0)", + pie11BackgroundOpacity: "1", + pie11BackgroundSize: "0%", + pie12BackgroundColor: "rgb(0,0,0)", + pie12BackgroundOpacity: "1", + pie12BackgroundSize: "0%", + pie13BackgroundColor: "rgb(0,0,0)", + pie13BackgroundOpacity: "1", + pie13BackgroundSize: "0%", + pie14BackgroundColor: "rgb(0,0,0)", + pie14BackgroundOpacity: "1", + pie14BackgroundSize: "0%", + pie15BackgroundColor: "rgb(0,0,0)", + pie15BackgroundOpacity: "1", + pie15BackgroundSize: "0%", + pie16BackgroundColor: "rgb(0,0,0)", + pie16BackgroundOpacity: "1", + pie16BackgroundSize: "0%", + pie1BackgroundColor: "rgb(0,0,0)", + pie1BackgroundOpacity: "1", + pie1BackgroundSize: "0%", + pie2BackgroundColor: "rgb(0,0,0)", + pie2BackgroundOpacity: "1", + pie2BackgroundSize: "0%", + pie3BackgroundColor: "rgb(0,0,0)", + pie3BackgroundOpacity: "1", + pie3BackgroundSize: "0%", + pie4BackgroundColor: "rgb(0,0,0)", + pie4BackgroundOpacity: "1", + pie4BackgroundSize: "0%", + pie5BackgroundColor: "rgb(0,0,0)", + pie5BackgroundOpacity: "1", + pie5BackgroundSize: "0%", + pie6BackgroundColor: "rgb(0,0,0)", + pie6BackgroundOpacity: "1", + pie6BackgroundSize: "0%", + pie7BackgroundColor: "rgb(0,0,0)", + pie7BackgroundOpacity: "1", + pie7BackgroundSize: "0%", + pie8BackgroundColor: "rgb(0,0,0)", + pie8BackgroundOpacity: "1", + pie8BackgroundSize: "0%", + pie9BackgroundColor: "rgb(0,0,0)", + pie9BackgroundOpacity: "1", + pie9BackgroundSize: "0%", + pieSize: "100%", + position: "origin", + "segment-distances": "20px", + "segment-weights": "0.5", + segmentDistances: "20px", + segmentWeights: "0.5", + "selection-box-border-color": "rgb(170,170,170)", + "selection-box-border-width": "1px", + "selection-box-color": "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxBorderColor: "rgb(170,170,170)", + selectionBoxBorderWidth: "1px", + selectionBoxColor: "rgb(221,221,221)", + selectionBoxOpacity: "0.65", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "source-arrow-color": "rgb(153,153,153)", + "source-arrow-fill": "filled", + "source-arrow-shape": "none", + "source-arrow-width": "1px", + "source-distance-from-node": "0px", + "source-endpoint": "outside-to-node", + "source-label": "", + "source-text-margin-x": "0px", + "source-text-margin-y": "0px", + "source-text-offset": "0px", + "source-text-rotation": "none", + sourceArrowColor: "rgb(153,153,153)", + sourceArrowFill: "filled", + sourceArrowShape: "none", + sourceArrowWidth: "1px", + sourceDistanceFromNode: "0px", + sourceEndpoint: "outside-to-node", + sourceLabel: "", + sourceTextMarginX: "0px", + sourceTextMarginY: "0px", + sourceTextOffset: "0px", + sourceTextRotation: "none", + "target-arrow-color": "rgb(153,153,153)", + "target-arrow-fill": "filled", + "target-arrow-shape": "none", + "target-arrow-width": "1px", + "target-distance-from-node": "0px", + "target-endpoint": "outside-to-node", + "target-label": "", + "target-text-margin-x": "0px", + "target-text-margin-y": "0px", + "target-text-offset": "0px", + "target-text-rotation": "none", + targetArrowColor: "rgb(153,153,153)", + targetArrowFill: "filled", + targetArrowShape: "none", + targetArrowWidth: "1px", + targetDistanceFromNode: "0px", + targetEndpoint: "outside-to-node", + targetLabel: "", + targetTextMarginX: "0px", + targetTextMarginY: "0px", + targetTextOffset: "0px", + targetTextRotation: "none", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + taxiDirection: "auto", + taxiTurn: "50%", + taxiTurnMinDistance: "10px", + "text-background-color": "rgb(210,212,210)", + "text-background-opacity": "0.7", + "text-background-padding": "2px", + "text-background-shape": "round-rectangle", + "text-border-color": "rgb(0,0,0)", + "text-border-opacity": "0", + "text-border-style": "solid", + "text-border-width": "0px", + "text-events": "no", + "text-halign": "center", + "text-justification": "auto", + "text-margin-x": "0px", + "text-margin-y": "7px", + "text-max-width": "80px", + "text-opacity": "1", + "text-outline-color": "rgb(0,0,0)", + "text-outline-opacity": "1", + "text-outline-width": "0px", + "text-overflow-wrap": "whitespace", + "text-rotation": "none", + "text-transform": "none", + "text-valign": "bottom", + "text-wrap": "ellipsis", + textBackgroundColor: "rgb(210,212,210)", + textBackgroundOpacity: "0.7", + textBackgroundPadding: "2px", + textBackgroundShape: "round-rectangle", + textBorderColor: "rgb(0,0,0)", + textBorderOpacity: "0", + textBorderStyle: "solid", + textBorderWidth: "0px", + textEvents: "no", + textHalign: "center", + textJustification: "auto", + textMarginX: "0px", + textMarginY: "7px", + textMaxWidth: "80px", + textOpacity: "1", + textOutlineColor: "rgb(0,0,0)", + textOutlineOpacity: "1", + textOutlineWidth: "0px", + textOverflowWrap: "whitespace", + textRotation: "none", + textTransform: "none", + textValign: "bottom", + textWrap: "ellipsis", + "transition-delay": "0ms", + "transition-duration": "0ms", + "transition-property": "none", + "transition-timing-function": "linear", + transitionDelay: "0ms", + transitionDuration: "0ms", + transitionProperty: "none", + transitionTimingFunction: "linear", + "underlay-color": "rgb(0,0,0)", + "underlay-opacity": "0", + "underlay-padding": "10px", + "underlay-shape": "round-rectangle", + underlayColor: "rgb(0,0,0)", + underlayOpacity: "0", + underlayPadding: "10px", + underlayShape: "round-rectangle", + visibility: "visible", + width: "20px", + "z-compound-depth": "auto", + "z-index": 14, + "z-index-compare": "manual", + zCompoundDepth: "auto", + zIndex: "3", + zIndexCompare: "manual" + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -534.1631525646346, posY: -392.5175143523944 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -534.1631525646346, y: -392.5175143523944 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "909bb49c-1966-411d-9d67-08409091e18b", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "pythonapp-deployment", + services: { + "909bb49c-1966-411d-9d67-08409091e18b": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "python" } }, + template: { + metadata: { + annotations: { + "dapr.io/app-id": "pythonapp", + "dapr.io/enable-api-logging": "true", + "dapr.io/enabled": "true" + }, + labels: { app: "python" } + }, + spec: { + containers: [ + { + args: [], + command: [], + env: [], + "env From": [], + image: "ghcr.io/dapr/samples/hello-k8s-python:latest", + name: "python", + ports: [], + "volume Devices": [], + "volume Mounts": [] + }, + { + args: [], + command: [], + env: [], + "env From": [], + name: "dapr-d sidecar", + ports: [], + "volume Devices": [], + "volume Mounts": [] + } + ] + } + } + }, + name: "pythonapp-deployment", + namespace: "default", + labels: { app: "python" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "909bb49c-1966-411d-9d67-08409091e18b", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(66,99,235)", + "background-opacity": 0.5, + "border-style": "solid", + "border-width": 2 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -99.44088937335948, posY: -612.3568858014587 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -99.44088937335948, y: -612.3568858014587 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "afaa487a-076c-4cee-9510-570d67d75b4f", + label: "TextBox", + type: "TextBox", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "TextBox", + services: { + "afaa487a-076c-4cee-9510-570d67d75b4f": { + settings: { name: "TextBox" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "8a440141-95cc-4a54-b01f-4f14b809818d", + source: "afaa487a-076c-4cee-9510-570d67d75b4f", + subType: "Annotation", + target: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "afaa487a-076c-4cee-9510-570d67d75b4f", + label: "TextBox", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "c1af66fb-1c38-54bf-92d1-9d9808251e00", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"text":true, "config":false,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f", + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "#d0021b", + "background-image": "none", + "background-opacity": 0, + "border-color": "rgb(208,2,27)", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "20px", + textOverlay: { + color: "rgb(208,2,27)", + content: "REDIS_STORE", + "font-size": "65" + }, + width: "115.7046155999951px", + "z-index": 21 + }, + styles: + '{"height":"20px","width":"40px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0,"border-color":"#808080"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: 43.8927370532409, posY: -202.20268438740297 }, + whiteboardData: {} + } + }, + type: "TextBox" + } + } + } + }, + position: { x: 43.8927370532409, y: -202.20268438740297 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e", + label: "TextBox", + type: "TextBox", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "TextBox", + services: { + "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e": { + settings: { name: "TextBox" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "8d8980fb-8e86-441a-8f25-62970a9a8e5c", + source: "b5583797-c9ae-446c-8a46-1febab50964a", + subType: "Annotation", + target: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + }, + { + data: { + id: "269daf47-73bb-4091-933b-03753e378208", + source: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e", + subType: "Annotation", + target: "bfb77120-0e02-4230-8006-df9e0c5f9114" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e", + label: "TextBox", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "c1af66fb-1c38-54bf-92d1-9d9808251e00", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"text":true, "config":false,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f", + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "#000000", + "background-image": "none", + "background-opacity": 0, + "border-color": "#808080", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "20px", + textOverlay: { + color: "#000000", + content: "DAPR CONTROL PLANE", + "font-size": "65" + }, + width: "115.7046155999951px", + "z-index": 20 + }, + styles: + '{"height":"20px","width":"40px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0,"border-color":"#808080"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: -342.4060419916933, posY: -568.9496014366352 }, + whiteboardData: {} + } + }, + type: "TextBox" + } + } + } + }, + position: { x: -342.4060419916933, y: -568.9496014366352 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ed3a2ce4-de87-4961-bf77-2e5c96368627", + label: "NodeGroupInventoryWallet", + type: "NodeGroupInventoryWallet", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "NodeGroupInventoryWallet", + services: { + "ed3a2ce4-de87-4961-bf77-2e5c96368627": { + settings: { name: "NodeGroupInventoryWallet" }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "ed3a2ce4-de87-4961-bf77-2e5c96368627", + label: "NodeGroupInventoryWallet", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "c1af66fb-1c38-54bf-92d1-9d9808251e00", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "pass-events-to": "parent", "supportsCompoundDragAndDrop":false,\n "edit": {\n "config": false,\n "copy": false,\n "delete": false,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": false\n },\n "style": false\n },\n "label": {\n "edit": false,\n "show": false,\n "sync-with-config-property": "none"\n }\n }\n}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0, + "border-style": "dashed", + "border-width": 0, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 17 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":0,"border-style":"dashed","background-opacity":0}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + parent: "8cb14ecd-d658-4ffa-bf94-beffb65c1837", + position: { posX: -550.9469417172508, posY: -400.4690520360638 }, + whiteboardData: {} + } + }, + type: "NodeGroupInventoryWallet" + } + } + }, + parent: "8cb14ecd-d658-4ffa-bf94-beffb65c1837" + }, + position: { x: -550.9469417172508, y: -400.4690520360638 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "bfb77120-0e02-4230-8006-df9e0c5f9114", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "daprd-sidecar", + services: { + "bfb77120-0e02-4230-8006-df9e0c5f9114": { + settings: { name: "daprd-sidecar" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "9d98e0d1-bec4-4908-891e-ff9458a28caf", + source: "d541b107-4229-40ee-8ab8-920adaa84651", + subType: "Annotation", + target: "bfb77120-0e02-4230-8006-df9e0c5f9114" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "75d2d58a-cdc3-4260-805c-770a1ba8bf73", + source: "bfb77120-0e02-4230-8006-df9e0c5f9114", + subType: "Annotation", + target: "d541b107-4229-40ee-8ab8-920adaa84651" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "4px" + } + }, + { + data: { + id: "eb737818-c50a-4905-898f-b92d32dd774e", + source: "bfb77120-0e02-4230-8006-df9e0c5f9114", + subType: "Annotation", + target: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + }, + { + data: { + id: "269daf47-73bb-4091-933b-03753e378208", + source: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e", + subType: "Annotation", + target: "bfb77120-0e02-4230-8006-df9e0c5f9114" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "bfb77120-0e02-4230-8006-df9e0c5f9114", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(147,152,176)", + "background-opacity": 0.3, + shape: "rectangle", + "z-index": 4 + }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "8cb14ecd-d658-4ffa-bf94-beffb65c1837", + position: { posX: -462.5315851697204, posY: -435.2674980251155 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "8cb14ecd-d658-4ffa-bf94-beffb65c1837" + }, + position: { x: -462.5315851697204, y: -435.2674980251155 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ed4380c5-c801-42c7-ab86-7995c0ea3280", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "python", + services: { + "ed4380c5-c801-42c7-ab86-7995c0ea3280": { + settings: { name: "python" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "fe129b95-6234-4ae0-a326-1dd8d0bd360f", + source: "b5583797-c9ae-446c-8a46-1febab50964a", + subType: "Annotation", + target: "ed4380c5-c801-42c7-ab86-7995c0ea3280" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "b388a285-9e41-4bab-b2a4-60601b7191cc", + source: "ed4380c5-c801-42c7-ab86-7995c0ea3280", + subType: "Annotation", + target: "b5583797-c9ae-446c-8a46-1febab50964a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "ed4380c5-c801-42c7-ab86-7995c0ea3280", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "background-opacity": 0, "z-index": 16 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "909bb49c-1966-411d-9d67-08409091e18b", + position: { posX: -41.009463886844195, posY: -589.1634141041714 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "909bb49c-1966-411d-9d67-08409091e18b" + }, + position: { x: -41.009463886844195, y: -589.1634141041714 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b5583797-c9ae-446c-8a46-1febab50964a", + label: "spec.template.spec.containers[1]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-d sidecar", + services: { + "b5583797-c9ae-446c-8a46-1febab50964a": { + settings: { name: "dapr-d sidecar" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "fe129b95-6234-4ae0-a326-1dd8d0bd360f", + source: "b5583797-c9ae-446c-8a46-1febab50964a", + subType: "Annotation", + target: "ed4380c5-c801-42c7-ab86-7995c0ea3280" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "b388a285-9e41-4bab-b2a4-60601b7191cc", + source: "ed4380c5-c801-42c7-ab86-7995c0ea3280", + subType: "Annotation", + target: "b5583797-c9ae-446c-8a46-1febab50964a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "8d8980fb-8e86-441a-8f25-62970a9a8e5c", + source: "b5583797-c9ae-446c-8a46-1febab50964a", + subType: "Annotation", + target: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[1]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "b5583797-c9ae-446c-8a46-1febab50964a", + label: "spec.template.spec.containers[1]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "background-opacity": 0, "z-index": 23 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "909bb49c-1966-411d-9d67-08409091e18b", + position: { posX: -143.37231485987476, posY: -653.550357498746 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[1]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "909bb49c-1966-411d-9d67-08409091e18b" + }, + position: { x: -143.37231485987476, y: -653.550357498746 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d541b107-4229-40ee-8ab8-920adaa84651", + label: "spec.template.spec.containers[1]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "node-app", + services: { + "d541b107-4229-40ee-8ab8-920adaa84651": { + settings: { name: "node-app" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "9d98e0d1-bec4-4908-891e-ff9458a28caf", + source: "d541b107-4229-40ee-8ab8-920adaa84651", + subType: "Annotation", + target: "bfb77120-0e02-4230-8006-df9e0c5f9114" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "75d2d58a-cdc3-4260-805c-770a1ba8bf73", + source: "bfb77120-0e02-4230-8006-df9e0c5f9114", + subType: "Annotation", + target: "d541b107-4229-40ee-8ab8-920adaa84651" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "4px" + } + } + ], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[1]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "d541b107-4229-40ee-8ab8-920adaa84651", + label: "spec.template.spec.containers[1]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "background-opacity": 0, "z-index": 5 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "8cb14ecd-d658-4ffa-bf94-beffb65c1837", + position: { posX: -613.2947199595487, posY: -367.7675306796733 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[1]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "8cb14ecd-d658-4ffa-bf94-beffb65c1837" + }, + position: { x: -613.2947199595487, y: -367.7675306796733 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4f5fadd4-077b-4a03-85fa-805aa5acdf1b", + type: "Component", + apiVersion: "dapr.io/v1alpha1", + meshType: "dapr", + model: "dapr", + config: { + name: "statestore", + services: { + "4f5fadd4-077b-4a03-85fa-805aa5acdf1b": { + namespace: "default", + settings: { + auth: { "secret Store": "kubernetes" }, + scopes: [], + spec: { + metadata: [ + { + name: "redisHost", + value: "redis-master.default.svc.cluster.local:6379" + }, + { + name: "redisPassword", + "secret Key Ref": { key: "redis-password", name: "redis" } + } + ], + type: "state.redis", + version: "v1" + }, + name: "statestore", + namespace: "default" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4f5fadd4-077b-4a03-85fa-805aa5acdf1b", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos", + model: "dapr", + modelDisplayName: "Dapr", + parentId: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f", + primaryColor: "#0d2192", + secondaryColor: "#5266D7", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 18 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/dapr/color/component-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/dapr/white/component-white.svg" + }, + parent: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f", + position: { posX: -175.58637971030635, posY: -293.95453433709366 }, + whiteboardData: { style: {} } + } + }, + type: "Component" + } + } + }, + parent: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + position: { x: -175.58637971030635, y: -293.95453433709366 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "eb737818-c50a-4905-898f-b92d32dd774e", + source: "bfb77120-0e02-4230-8006-df9e0c5f9114", + subType: "Annotation", + target: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "8a440141-95cc-4a54-b01f-4f14b809818d", + source: "afaa487a-076c-4cee-9510-570d67d75b4f", + subType: "Annotation", + target: "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "9d98e0d1-bec4-4908-891e-ff9458a28caf", + source: "d541b107-4229-40ee-8ab8-920adaa84651", + subType: "Annotation", + target: "bfb77120-0e02-4230-8006-df9e0c5f9114" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "75d2d58a-cdc3-4260-805c-770a1ba8bf73", + source: "bfb77120-0e02-4230-8006-df9e0c5f9114", + subType: "Annotation", + target: "d541b107-4229-40ee-8ab8-920adaa84651" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "269daf47-73bb-4091-933b-03753e378208", + source: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e", + subType: "Annotation", + target: "bfb77120-0e02-4230-8006-df9e0c5f9114" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "298816f9-9720-4581-970c-6e96492e3365", + metadata: { port: 80, protocol: "TCP" }, + source: "ce761f19-b7b1-433d-83c4-6eb874380030", + subType: "Network", + target: "8cb14ecd-d658-4ffa-bf94-beffb65c1837" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "fe129b95-6234-4ae0-a326-1dd8d0bd360f", + source: "b5583797-c9ae-446c-8a46-1febab50964a", + subType: "Annotation", + target: "ed4380c5-c801-42c7-ab86-7995c0ea3280" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "b388a285-9e41-4bab-b2a4-60601b7191cc", + source: "ed4380c5-c801-42c7-ab86-7995c0ea3280", + subType: "Annotation", + target: "b5583797-c9ae-446c-8a46-1febab50964a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "8d8980fb-8e86-441a-8f25-62970a9a8e5c", + source: "b5583797-c9ae-446c-8a46-1febab50964a", + subType: "Annotation", + target: "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "3d435c5d-6bb2-4cf8-ac27-fd85d8917d7f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "19", + zIndex: "19", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(147,152,176)", + backgroundColor: "rgb(147,152,176)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ce761f19-b7b1-433d-83c4-6eb874380030": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "15", + zIndex: "15", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "nodeapp", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "nodeapp", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "8cb14ecd-d658-4ffa-bf94-beffb65c1837": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "3", + zIndex: "3", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "nodeapp", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(url(http://localhost:9081/ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg))", + backgroundImage: + "url(url(http://localhost:9081/ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg))", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "nodeapp", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "909bb49c-1966-411d-9d67-08409091e18b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "pythonapp-deployment", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(66,99,235)", + backgroundColor: "rgb(66,99,235)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "pythonapp-deployment", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "afaa487a-076c-4cee-9510-570d67d75b4f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "21", + zIndex: "21", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "115.7046155999951px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(208,2,27)", + backgroundColor: "rgb(208,2,27)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(208,2,27)", + borderColor: "rgb(208,2,27)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8845dc0d-bcd1-4e2b-9da1-2cc89147d98e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "20", + zIndex: "20", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "115.7046155999951px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,0,0)", + backgroundColor: "rgb(0,0,0)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(128,128,128)", + borderColor: "rgb(128,128,128)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ed3a2ce4-de87-4961-bf77-2e5c96368627": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "17", + zIndex: "17", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bfb77120-0e02-4230-8006-df9e0c5f9114": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "daprd-sidecar", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(147,152,176)", + backgroundColor: "rgb(147,152,176)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.3", + backgroundOpacity: "0.3", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "daprd-sidecar", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ed4380c5-c801-42c7-ab86-7995c0ea3280": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "16", + zIndex: "16", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "python", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "python", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b5583797-c9ae-446c-8a46-1febab50964a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "23", + zIndex: "23", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-d sidecar", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-d sidecar", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "d541b107-4229-40ee-8ab8-920adaa84651": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "node-app", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "node-app", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4f5fadd4-077b-4a03-85fa-805aa5acdf1b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "18", + zIndex: "18", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "statestore", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(13,33,146)", + backgroundColor: "rgb(13,33,146)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(15,39,175)", + borderColor: "rgb(15,39,175)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "statestore", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "eb737818-c50a-4905-898f-b92d32dd774e": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "8a440141-95cc-4a54-b01f-4f14b809818d": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(208,2,27)", + lineColor: "rgb(208,2,27)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-distances": "40px -40px", + controlPointDistances: "40px -40px", + "control-point-weights": "0.25 0.75", + controlPointWeights: "0.25 0.75", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-distance": "40px -40px", + controlPointDistance: "40px -40px", + "control-point-weight": "0.25 0.75", + controlPointWeight: "0.25 0.75", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "9d98e0d1-bec4-4908-891e-ff9458a28caf": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "75d2d58a-cdc3-4260-805c-770a1ba8bf73": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "4px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "269daf47-73bb-4091-933b-03753e378208": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-distances": "40px -40px", + controlPointDistances: "40px -40px", + "control-point-weights": "0.25 0.75", + controlPointWeights: "0.25 0.75", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-distance": "40px -40px", + controlPointDistance: "40px -40px", + "control-point-weight": "0.25 0.75", + controlPointWeight: "0.25 0.75", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "298816f9-9720-4581-970c-6e96492e3365": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "fe129b95-6234-4ae0-a326-1dd8d0bd360f": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "b388a285-9e41-4bab-b2a4-60601b7191cc": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "8d8980fb-8e86-441a-8f25-62970a9a8e5c": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-6fc310cc-d2b4-4434-bce1-e61bc04ebc17-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/src/assets/images/learning-path/embed-test/embedded-design-dapr-relationship.js b/src/assets/images/learning-path/embed-test/embedded-design-dapr-relationship.js new file mode 100644 index 000000000000..76cb908cf762 --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-dapr-relationship.js @@ -0,0 +1,31519 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["serviceaccounts"], + verbs: ["get", "list"] + }, + { + "api Groups": ["admissionregistration.k8s.io"], + "resource Names": ["dapr-sidecar-injector"], + resources: ["mutatingwebhookconfigurations"], + verbs: ["patch"] + }, + { + "api Groups": ["dapr.io"], + resources: ["components"], + verbs: ["get", "list"] + } + ], + name: "dapr-injector", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "27799d62-01c6-4aec-b232-fc0c10463309", + metadata: { binded_by: "5dae3c69-0084-4804-95f1-1dc3feb0a772" }, + source: "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19", + subType: "Permission", + target: "c092c53d-07c5-46c7-aab0-44cafe65d54f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 46 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -97.00918664667718, posY: 348.89838746396606 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: -97.00918664667718, y: 348.89838746396606 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "1813c7c5-7205-454c-8273-de0186a379b0", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "1813c7c5-7205-454c-8273-de0186a379b0": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-sentry" + }, + subjects: [ + { kind: "ServiceAccount", name: "dapr-sentry", namespace: "default" } + ], + name: "dapr-sentry", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "1813c7c5-7205-454c-8273-de0186a379b0", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1027 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: -488.78737239389045, posY: 48.76509964395662 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: -488.78737239389045, y: 48.76509964395662 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "928910cc-9b0f-4090-998b-e11db2426edf", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "928910cc-9b0f-4090-998b-e11db2426edf": { + namespace: "default", + settings: { + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2ce9df0d-d6be-4487-9ee3-670c24acdb23", + metadata: { binded_by: "33019a1c-9653-4c84-95dd-5e4152ce6275" }, + source: "e8c758d7-8143-44d9-a68d-a0da53b39458", + subType: "Permission", + target: "928910cc-9b0f-4090-998b-e11db2426edf" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "1a8e0076-45a6-4510-b100-1e3a84ab94a2", + metadata: { binded_by: "1813c7c5-7205-454c-8273-de0186a379b0" }, + source: "883aacb3-e178-4315-b6d1-db3b1da8a045", + subType: "Permission", + target: "928910cc-9b0f-4090-998b-e11db2426edf" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "928910cc-9b0f-4090-998b-e11db2426edf", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 44 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: -589.559243734118, posY: 72.74283525861092 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: -589.559243734118, y: 72.74283525861092 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a89f5dc5-7c5e-4a21-b947-6202dc432dcd", + type: "ConfigMap", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-trust-bundle", + services: { + "a89f5dc5-7c5e-4a21-b947-6202dc432dcd": { + namespace: "default", + settings: { + name: "dapr-trust-bundle", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "a89f5dc5-7c5e-4a21-b947-6202dc432dcd", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1010 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/configmap-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/configmap-white.svg" + }, + position: { posX: 116.09390264220895, posY: -71.77794891375268 }, + whiteboardData: { style: {} } + } + }, + type: "ConfigMap" + } + } + } + }, + position: { x: 116.09390264220895, y: -71.77794891375268 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "74984291-f854-47cc-ae0c-a4e135593bb3", + type: "Secret", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-trust-bundle", + services: { + "74984291-f854-47cc-ae0c-a4e135593bb3": { + namespace: "default", + settings: { + name: "dapr-trust-bundle", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "74984291-f854-47cc-ae0c-a4e135593bb3", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "shield", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-clip": "node", + "background-image-containment": "over", + "background-opacity": "0", + height: 32, + padding: 1, + width: 32, + "z-index": 23 + }, + styles: + '{"height":32,"width":32,"background-clip":"node","background-image-containment":"over","padding":1,"background-opacity":"0"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/secret-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/secret-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/secret-white.svg" + }, + position: { posX: 224.40615542626335, posY: -69.2501732181521 }, + whiteboardData: { style: {} } + } + }, + type: "Secret" + } + } + } + }, + position: { x: 224.40615542626335, y: -69.2501732181521 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "36be128a-a07f-443d-94c2-98f729e56006", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "components.dapr.io", + services: { + "36be128a-a07f-443d-94c2-98f729e56006": { + settings: { + spec: { + group: "dapr.io", + names: { + categories: ["all", "dapr"], + kind: "Component", + plural: "components", + singular: "component" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: "Component describes an Dapr component type.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + auth: { + description: + "Auth represents authentication details for the component.", + properties: { "secret Store": { type: "string" } }, + required: ["secretStore"], + type: "object" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: "ComponentSpec is the spec for a component.", + properties: { + "ignore Errors": { type: "boolean" }, + "init Timeout": { type: "string" }, + metadata: { + items: { + description: "NameValuePair is a name/value pair.", + properties: { + "env Ref": { + description: + "EnvRef is the name of an environmental variable to read the value from.", + type: "string" + }, + name: { + description: "Name of the property.", + type: "string" + }, + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + }, + type: { type: "string" }, + version: { type: "string" } + }, + required: ["metadata", "type", "version"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "components.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "36be128a-a07f-443d-94c2-98f729e56006", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1006 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -127.5, posY: 99.5 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -127.5, y: 99.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "5dae3c69-0084-4804-95f1-1dc3feb0a772", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "5dae3c69-0084-4804-95f1-1dc3feb0a772": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-injector" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-injector", + namespace: "default" + } + ], + name: "dapr-injector", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "5dae3c69-0084-4804-95f1-1dc3feb0a772", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1028 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: -261.40370024134586, posY: 356.3181605113589 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: -261.40370024134586, y: 356.3181605113589 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "ae5f9964-d9ee-4ab2-bf8e-57f9c2cb6088", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement-server", + services: { + "ae5f9964-d9ee-4ab2-bf8e-57f9c2cb6088": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [ + { name: "api", port: 50005 }, + { name: "raft-node", port: 8201 } + ], + "publish Not Ready Addresses": true, + selector: { app: "dapr-placement-server" } + }, + name: "dapr-placement-server", + namespace: "default", + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "ae5f9964-d9ee-4ab2-bf8e-57f9c2cb6088", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 39 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -187.07333398812608, posY: -212.55774306401486 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -187.07333398812608, y: -212.55774306401486 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2c2a168b-cc29-4c60-9559-62f976eb867e", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-secret-reader", + services: { + "2c2a168b-cc29-4c60-9559-62f976eb867e": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "secret-reader" + }, + subjects: [{ kind: "ServiceAccount", name: "default" }], + name: "dapr-secret-reader", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "2c2a168b-cc29-4c60-9559-62f976eb867e", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 18 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -122.5, posY: 34 }, + whiteboardData: { style: {} } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -122.5, y: 34 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b7cf325c-0631-4869-ad98-b8b51b0f7468", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "secret-reader", + services: { + "b7cf325c-0631-4869-ad98-b8b51b0f7468": { + namespace: "default", + settings: { + rules: [{ "api Groups": [""], resources: ["secrets"], verbs: ["get"] }], + name: "secret-reader", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b7cf325c-0631-4869-ad98-b8b51b0f7468", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 27 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -196.14561329891507, posY: 161.7912265978301 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -196.14561329891507, y: 161.7912265978301 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "456ffece-a643-4f05-a7c3-ef0389fc68f4", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "subscriptions.dapr.io", + services: { + "456ffece-a643-4f05-a7c3-ef0389fc68f4": { + settings: { + spec: { + conversion: { + strategy: "Webhook", + webhook: { + "client Config": { + service: { + name: "dapr-webhook", + namespace: "replaceme", + path: "/convert" + } + }, + "conversion Review Versions": ["v1", "v2alpha1"] + } + }, + group: "dapr.io", + names: { + categories: ["all", "dapr"], + kind: "Subscription", + "list Kind": "SubscriptionList", + plural: "subscriptions", + singular: "subscription" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "Subscription describes an pub/sub event subscription.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "SubscriptionSpec is the spec for an event subscription.", + properties: { + "bulk Subscribe": { + description: "Represents bulk subscribe properties", + properties: { + enabled: { type: "boolean" }, + "max Await Duration Ms": { type: "integer" }, + "max Messages Count": { type: "integer" } + }, + required: ["enabled"], + type: "object" + }, + "dead Letter Topic": { type: "string" }, + metadata: { + additionalProperties: { type: "string" }, + type: "object" + }, + pubsubname: { type: "string" }, + route: { type: "string" }, + topic: { type: "string" } + }, + required: ["pubsubname", "route", "topic"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: false + }, + { + name: "v2alpha1", + schema: { + "open APIV3Schema": { + description: + "Subscription describes an pub/sub event subscription.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "SubscriptionSpec is the spec for an event subscription.", + properties: { + "bulk Subscribe": { + description: "Represents bulk subscribe properties", + properties: { + enabled: { type: "boolean" }, + "max Await Duration Ms": { type: "integer" }, + "max Messages Count": { type: "integer" } + }, + required: ["enabled"], + type: "object" + }, + "dead Letter Topic": { + description: + "The optional dead letter queue for this topic to send events to.", + type: "string" + }, + metadata: { + additionalProperties: { type: "string" }, + description: + "The optional metadata to provide the subscription.", + type: "object" + }, + pubsubname: { + description: "The PubSub component name.", + type: "string" + }, + routes: { + description: + "The Routes configuration for this topic.", + properties: { + default: { type: "string" }, + rules: { + description: "The list of rules for this topic.", + items: { + description: + "Rule is used to specify the condition for sending a message to a specific path.", + properties: { + match: { + description: + "The optional CEL expression used to match the event. If the match is not specified, then the route is considered the default. The rules are tested in the order specified, so they should be define from most-to-least specific. The default route should appear last in the list.", + type: "string" + }, + path: { + description: + "The path for events that match this rule.", + type: "string" + } + }, + required: ["match", "path"], + type: "object" + }, + type: "array" + } + }, + type: "object" + }, + topic: { + description: "The topic name to subscribe to.", + type: "string" + } + }, + required: ["pubsubname", "routes", "topic"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "subscriptions.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "456ffece-a643-4f05-a7c3-ef0389fc68f4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 32 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -43.3515582044107, posY: 153.71882866993332 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -43.3515582044107, y: 153.71882866993332 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c5b673f6-bd45-4491-b4ab-78403013b366", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "c5b673f6-bd45-4491-b4ab-78403013b366": { + settings: { + rules: [], + name: "dapr-scheduler", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "def6141d-463e-490b-be2a-503fe91b2389", + metadata: { binded_by: "195b681c-09d2-41c5-9af3-86dd13e3e446" }, + source: "c5b673f6-bd45-4491-b4ab-78403013b366", + subType: "Permission", + target: "a3a358df-980e-41bb-845d-1c133f1361dd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "c5b673f6-bd45-4491-b4ab-78403013b366", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 47 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -22.131519196303344, posY: 244.74278348413097 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: -22.131519196303344, y: 244.74278348413097 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c092c53d-07c5-46c7-aab0-44cafe65d54f", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "c092c53d-07c5-46c7-aab0-44cafe65d54f": { + namespace: "default", + settings: { + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "644cc512-8e91-49b2-b4fb-89e7d352bdc0", + metadata: { binded_by: "d2a9eb6c-6e78-4955-b605-e9475e04bcd6" }, + source: "ee4fca94-ed27-4c5c-a76f-2985f0606557", + subType: "Permission", + target: "c092c53d-07c5-46c7-aab0-44cafe65d54f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "27799d62-01c6-4aec-b232-fc0c10463309", + metadata: { binded_by: "5dae3c69-0084-4804-95f1-1dc3feb0a772" }, + source: "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19", + subType: "Permission", + target: "c092c53d-07c5-46c7-aab0-44cafe65d54f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "c092c53d-07c5-46c7-aab0-44cafe65d54f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1003 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: -425.5849129618718, posY: 363.7283064486838 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: -425.5849129618718, y: 363.7283064486838 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-operator" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-operator", + namespace: "default" + } + ], + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1031 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -412.3313944074397, posY: 218.2563349557148 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -412.3313944074397, y: 218.2563349557148 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "b18d15e9-2f3f-4748-b160-b0c1898a4b04", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement-server", + services: { + "b18d15e9-2f3f-4748-b160-b0c1898a4b04": { + namespace: "default", + settings: { + spec: { + "pod Management Policy": "Parallel", + replicas: 1, + selector: { "match Labels": { app: "dapr-placement-server" } }, + "service Name": "dapr-placement-server", + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "placement", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--replicationFactor", + "100", + "--max-api-level", + "10", + "--min-api-level", + "0", + "--metrics-port", + "9090", + "--tls-enabled", + "--trust-domain=cluster.local", + "--trust-anchors-file=/var/run/secrets/dapr.io/tls/ca.crt", + "--sentry-address=dapr-sentry.default.svc.cluster.local:443", + "--mode=kubernetes" + ], + command: ["/placement"], + env: [ + { + name: "PLACEMENT_ID", + "value From": { + "field Ref": { "field Path": "metadata.name" } + } + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/placement:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 10, + "period Seconds": 3 + }, + name: "dapr-placement-server", + ports: [ + { "container Port": 50005, name: "api" }, + { "container Port": 8201, name: "raft-node" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As User": 0 + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token" + } + ] + } + ], + "service Account Name": "dapr-placement", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-placement-server", + namespace: "default", + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b18d15e9-2f3f-4748-b160-b0c1898a4b04", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 1014 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: 31.191562177032438, posY: 92.0841122176559 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: 31.191562177032438, y: 92.0841122176559 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8ab36b5c-9976-42c0-a4e8-856bde7df33d", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "8ab36b5c-9976-42c0-a4e8-856bde7df33d": { + settings: { + rules: [], + name: "dapr-placement", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "dea2c3e5-5ddb-49ff-b201-7a135e080a33", + metadata: { binded_by: "3b7da215-6569-416e-afd6-b2da583e9019" }, + source: "8ab36b5c-9976-42c0-a4e8-856bde7df33d", + subType: "Permission", + target: "37b229cf-e5e1-44bc-ba5f-6248adba4900" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "8ab36b5c-9976-42c0-a4e8-856bde7df33d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1012 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 239.69953557752805, posY: 22.082453195660133 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 239.69953557752805, y: 22.082453195660133 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4353bc1c-a747-48fc-b660-852d5a8af579", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator-admin", + services: { + "4353bc1c-a747-48fc-b660-852d5a8af579": { + settings: { + rules: [ + { + "api Groups": ["apiextensions.k8s.io"], + resources: ["customresourcedefinitions"], + verbs: ["get", "patch"] + }, + { + "api Groups": ["apps"], + resources: ["deployments", "deployments/finalizers"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["apps"], + resources: ["deployments/finalizers"], + verbs: ["update"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets", "statefulsets/finalizers"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets/finalizers"], + verbs: ["update"] + }, + { + "api Groups": [""], + resources: ["pods"], + verbs: ["get", "list", "delete", "watch"] + }, + { + "api Groups": [""], + resources: ["services", "services/finalizers"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { "api Groups": [""], resources: ["services"], verbs: ["delete"] }, + { + "api Groups": [""], + resources: ["secrets"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["dapr.io"], + resources: [ + "components", + "configurations", + "subscriptions", + "resiliencies", + "httpendpoints" + ], + verbs: ["get", "list", "watch"] + } + ], + name: "dapr-operator-admin", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "8d6316e3-7795-4be8-8d78-6423ffb8c695", + metadata: { binded_by: "4216c153-a7a0-4597-be27-a4b4316cac3f" }, + source: "4353bc1c-a747-48fc-b660-852d5a8af579", + subType: "Permission", + target: "c8ff435a-8bd1-4005-ba36-b6a938e920e8" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4353bc1c-a747-48fc-b660-852d5a8af579", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 30 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -323.75785613055604, posY: 159.5088616573323 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: -323.75785613055604, y: 159.5088616573323 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e8c758d7-8143-44d9-a68d-a0da53b39458", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "e8c758d7-8143-44d9-a68d-a0da53b39458": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["secrets"], + verbs: ["get", "update", "delete"] + }, + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["configmaps"], + verbs: ["get", "update", "watch", "list"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["list", "get", "watch"] + } + ], + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2ce9df0d-d6be-4487-9ee3-670c24acdb23", + metadata: { binded_by: "33019a1c-9653-4c84-95dd-5e4152ce6275" }, + source: "e8c758d7-8143-44d9-a68d-a0da53b39458", + subType: "Permission", + target: "928910cc-9b0f-4090-998b-e11db2426edf" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "e8c758d7-8143-44d9-a68d-a0da53b39458", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 40 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -274.2184525026238, posY: 89.34232037976888 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -274.2184525026238, y: 89.34232037976888 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "dd8a602d-beb3-493e-ae07-f1219109e65b", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "resiliencies.dapr.io", + services: { + "dd8a602d-beb3-493e-ae07-f1219109e65b": { + settings: { + spec: { + group: "dapr.io", + names: { + categories: ["dapr"], + kind: "Resiliency", + "list Kind": "ResiliencyList", + plural: "resiliencies", + singular: "resiliency" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + properties: { + policies: { + properties: { + "circuit Breakers": { + additionalProperties: { + properties: { + interval: { type: "string" }, + "max Requests": { type: "integer" }, + timeout: { type: "string" }, + trip: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + retries: { + additionalProperties: { + properties: { + duration: { type: "string" }, + "max Interval": { type: "string" }, + "max Retries": { type: "integer" }, + policy: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + timeouts: { + additionalProperties: { type: "string" }, + type: "object" + } + }, + type: "object" + }, + targets: { + properties: { + actors: { + additionalProperties: { + properties: { + "circuit Breaker": { type: "string" }, + "circuit Breaker Cache Size": { + type: "integer" + }, + "circuit Breaker Scope": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + apps: { + additionalProperties: { + properties: { + "circuit Breaker": { type: "string" }, + "circuit Breaker Cache Size": { + type: "integer" + }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + components: { + additionalProperties: { + properties: { + inbound: { + properties: { + "circuit Breaker": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + outbound: { + properties: { + "circuit Breaker": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + } + }, + type: "object" + }, + type: "object" + } + }, + type: "object" + } + }, + required: ["policies", "targets"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "resiliencies.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" }, + annotations: { "controller-gen.kubebuilder.io/version": "v0.5.0" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "dd8a602d-beb3-493e-ae07-f1219109e65b", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 38 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 14.267118375343518, posY: -13.981358498282644 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 14.267118375343518, y: -13.981358498282644 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "37b229cf-e5e1-44bc-ba5f-6248adba4900", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "37b229cf-e5e1-44bc-ba5f-6248adba4900": { + namespace: "default", + settings: { + name: "dapr-placement", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "dea2c3e5-5ddb-49ff-b201-7a135e080a33", + metadata: { binded_by: "3b7da215-6569-416e-afd6-b2da583e9019" }, + source: "8ab36b5c-9976-42c0-a4e8-856bde7df33d", + subType: "Permission", + target: "37b229cf-e5e1-44bc-ba5f-6248adba4900" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "37b229cf-e5e1-44bc-ba5f-6248adba4900", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1018 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 50.27312711585591, posY: 250.2007291879592 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 50.27312711585591, y: 250.2007291879592 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "33019a1c-9653-4c84-95dd-5e4152ce6275", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "33019a1c-9653-4c84-95dd-5e4152ce6275": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-sentry" + }, + subjects: [ + { kind: "ServiceAccount", name: "dapr-sentry", namespace: "default" } + ], + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "33019a1c-9653-4c84-95dd-5e4152ce6275", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1025 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -431.99564251833453, posY: 81.03695618030743 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -431.99564251833453, y: 81.03695618030743 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "883aacb3-e178-4315-b6d1-db3b1da8a045", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "883aacb3-e178-4315-b6d1-db3b1da8a045": { + settings: { + rules: [ + { + "api Groups": ["authentication.k8s.io"], + resources: ["tokenreviews"], + verbs: ["create"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["list", "get", "watch"] + }, + { + "api Groups": [""], + resources: ["pods"], + verbs: ["list", "get", "watch"] + } + ], + name: "dapr-sentry", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1a8e0076-45a6-4510-b100-1e3a84ab94a2", + metadata: { binded_by: "1813c7c5-7205-454c-8273-de0186a379b0" }, + source: "883aacb3-e178-4315-b6d1-db3b1da8a045", + subType: "Permission", + target: "928910cc-9b0f-4090-998b-e11db2426edf" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "883aacb3-e178-4315-b6d1-db3b1da8a045", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 33 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -387.78161260587865, posY: 24.731712434371037 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: -387.78161260587865, y: 24.731712434371037 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "035a7ea1-8cde-4664-86ca-de60386e4445", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "configurations.dapr.io", + services: { + "035a7ea1-8cde-4664-86ca-de60386e4445": { + settings: { + spec: { + group: "dapr.io", + names: { + kind: "Configuration", + "list Kind": "ConfigurationList", + plural: "configurations", + singular: "configuration" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "Configuration describes an Dapr configuration setting.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + spec: { + description: + "ConfigurationSpec is the spec for an configuration.", + properties: { + "access Control": { + description: + "AccessControlSpec is the spec object in ConfigurationSpec.", + properties: { + "default Action": { type: "string" }, + policies: { + items: { + description: + "AppPolicySpec defines the policy data structure for each app.", + properties: { + "app Id": { type: "string" }, + "default Action": { type: "string" }, + namespace: { type: "string" }, + operations: { + items: { + description: + "AppOperationAction defines the data structure for each app operation.", + properties: { + action: { type: "string" }, + "http Verb": { + items: { type: "string" }, + type: "array" + }, + name: { type: "string" } + }, + required: ["action", "name"], + type: "object" + }, + type: "array" + }, + "trust Domain": { type: "string" } + }, + required: ["appId"], + type: "object" + }, + type: "array" + }, + "trust Domain": { type: "string" } + }, + type: "object" + }, + api: { + description: + "APISpec describes the configuration for Dapr APIs.", + properties: { + allowed: { + description: + "List of allowed APIs. Can be used in conjunction with denied.", + items: { + description: + "APIAccessRule describes an access rule for allowing or denying a Dapr API.", + properties: { + name: { type: "string" }, + protocol: { type: "string" }, + version: { type: "string" } + }, + required: ["name", "version"], + type: "object" + }, + type: "array" + }, + denied: { + description: + "List of denied APIs. Can be used in conjunction with allowed.", + items: { + description: + "APIAccessRule describes an access rule for allowing or denying a Dapr API.", + properties: { + name: { type: "string" }, + protocol: { type: "string" }, + version: { type: "string" } + }, + required: ["name", "version"], + type: "object" + }, + type: "array" + } + }, + type: "object" + }, + "app Http Pipeline": { + description: + "PipelineSpec defines the middleware pipeline.", + properties: { + handlers: { + items: { + description: + "HandlerSpec defines a request handlers.", + properties: { + name: { type: "string" }, + selector: { + description: + "SelectorSpec selects target services to which the handler is to be applied.", + properties: { + fields: { + items: { + description: + "SelectorField defines a selector fields.", + properties: { + field: { type: "string" }, + value: { type: "string" } + }, + required: ["field", "value"], + type: "object" + }, + type: "array" + } + }, + required: ["fields"], + type: "object" + }, + type: { type: "string" } + }, + required: ["name", "type"], + type: "object" + }, + type: "array" + } + }, + required: ["handlers"], + type: "object" + }, + components: { + description: + "ComponentsSpec describes the configuration for Dapr components", + properties: { + deny: { + description: + "Denylist of component types that cannot be instantiated", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + features: { + items: { + description: + "FeatureSpec defines the features that are enabled/disabled.", + properties: { + enabled: { type: "boolean" }, + name: { type: "string" } + }, + required: ["enabled", "name"], + type: "object" + }, + type: "array" + }, + "http Pipeline": { + description: + "PipelineSpec defines the middleware pipeline.", + properties: { + handlers: { + items: { + description: + "HandlerSpec defines a request handlers.", + properties: { + name: { type: "string" }, + selector: { + description: + "SelectorSpec selects target services to which the handler is to be applied.", + properties: { + fields: { + items: { + description: + "SelectorField defines a selector fields.", + properties: { + field: { type: "string" }, + value: { type: "string" } + }, + required: ["field", "value"], + type: "object" + }, + type: "array" + } + }, + required: ["fields"], + type: "object" + }, + type: { type: "string" } + }, + required: ["name", "type"], + type: "object" + }, + type: "array" + } + }, + required: ["handlers"], + type: "object" + }, + logging: { + description: + "LoggingSpec defines the configuration for logging.", + properties: { + "api Logging": { + description: "Configure API logging.", + properties: { + enabled: { + description: + "Default value for enabling API logging. Sidecars can always override this by setting `--enable-api-logging` to true or false explicitly. The default value is false.", + type: "boolean" + }, + "obfuscate URLs": { + description: + "When enabled, obfuscates the values of URLs in HTTP API logs, logging the route name rather than the full path being invoked, which could contain PII. Default: false. This option has no effect if API logging is disabled.", + type: "boolean" + }, + "omit Health Checks": { + description: + "If true, health checks are not reported in API logs. Default: false. This option has no effect if API logging is disabled.", + type: "boolean" + } + }, + type: "object" + } + }, + type: "object" + }, + mTLS: { + description: "MTLSSpec defines mTLS configuration.", + properties: { + "allowed Clock Skew": { type: "string" }, + "control Plane Trust Domain": { type: "string" }, + enabled: { type: "boolean" }, + "sentry Address": { type: "string" }, + "token Validators": { + description: + 'Additional token validators to use. When Dapr is running in Kubernetes mode, this is in addition to the built-in "kubernetes" validator. In self-hosted mode, enabling a custom validator will disable the built-in "insecure" validator.', + items: { + description: + "ValidatorSpec contains additional token validators to use.", + properties: { + name: { + description: "Name of the validator", + enum: ["jwks"], + type: "string" + }, + options: { + description: + "Options for the validator, if any", + type: "object", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + }, + "workload Cert TTL": { type: "string" } + }, + required: ["enabled"], + type: "object" + }, + metric: { + default: { enabled: true }, + description: + "MetricSpec defines metrics configuration.", + properties: { + enabled: { type: "boolean" }, + http: { + description: + "MetricHTTP defines configuration for metrics for the HTTP server", + properties: { + "exclude Verbs": { + description: + "If true (default is false) HTTP verbs (e.g., GET, POST) are excluded from the metrics.", + type: "boolean" + }, + "increased Cardinality": { + description: + "If true, metrics for the HTTP server are collected with increased cardinality. The default is true in Dapr 1.13, but will be changed to false in 1.15+", + type: "boolean" + }, + "path Matching": { + description: + "PathMatching defines the path matching configuration for HTTP server metrics.", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + rules: { + items: { + description: + "MetricsRule defines configuration options for a metric.", + properties: { + labels: { + items: { + description: + "MetricsLabel defines an object that allows to set regex expressions for a label.", + properties: { + name: { type: "string" }, + regex: { + additionalProperties: { + type: "string" + }, + type: "object" + } + }, + required: ["name", "regex"], + type: "object" + }, + type: "array" + }, + name: { type: "string" } + }, + required: ["labels", "name"], + type: "object" + }, + type: "array" + } + }, + required: ["enabled"], + type: "object" + }, + metrics: { + default: { enabled: true }, + description: + "MetricSpec defines metrics configuration.", + properties: { + enabled: { type: "boolean" }, + http: { + description: + "MetricHTTP defines configuration for metrics for the HTTP server", + properties: { + "exclude Verbs": { + description: + "If true (default is false) HTTP verbs (e.g., GET, POST) are excluded from the metrics.", + type: "boolean" + }, + "increased Cardinality": { + description: + "If true, metrics for the HTTP server are collected with increased cardinality. The default is true in Dapr 1.13, but will be changed to false in 1.14+", + type: "boolean" + }, + "path Matching": { + description: + "PathMatching defines the path matching configuration for HTTP server metrics.", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + "latency Distribution Buckets": { + description: + "If a list of integers is specified, use these values for latency distribution buckets instead of the default values.", + items: { type: "integer" }, + type: "array" + }, + rules: { + items: { + description: + "MetricsRule defines configuration options for a metric.", + properties: { + labels: { + items: { + description: + "MetricsLabel defines an object that allows to set regex expressions for a label.", + properties: { + name: { type: "string" }, + regex: { + additionalProperties: { + type: "string" + }, + type: "object" + } + }, + required: ["name", "regex"], + type: "object" + }, + type: "array" + }, + name: { type: "string" } + }, + required: ["labels", "name"], + type: "object" + }, + type: "array" + } + }, + required: ["enabled"], + type: "object" + }, + "name Resolution": { + description: + "NameResolutionSpec is the spec for name resolution configuration.", + properties: { + component: { type: "string" }, + configuration: { + description: + "DynamicValue is a dynamic value struct for the component.metadata pair value.", + type: "object", + "x-kubernetes-preserve-unknown-fields": true + }, + version: { type: "string" } + }, + required: ["component", "configuration", "version"], + type: "object" + }, + secrets: { + description: + "SecretsSpec is the spec for secrets configuration.", + properties: { + scopes: { + items: { + description: + "SecretsScope defines the scope for secrets.", + properties: { + "allowed Secrets": { + items: { type: "string" }, + type: "array" + }, + "default Access": { type: "string" }, + "denied Secrets": { + items: { type: "string" }, + type: "array" + }, + "store Name": { type: "string" } + }, + required: ["storeName"], + type: "object" + }, + type: "array" + } + }, + required: ["scopes"], + type: "object" + }, + tracing: { + description: + "TracingSpec defines distributed tracing configuration.", + properties: { + otel: { + description: + "OtelSpec defines Otel exporter configurations.", + properties: { + "endpoint Address": { type: "string" }, + "is Secure": { type: "boolean" }, + protocol: { type: "string" } + }, + required: [ + "endpointAddress", + "isSecure", + "protocol" + ], + type: "object" + }, + "sampling Rate": { type: "string" }, + stdout: { type: "boolean" }, + zipkin: { + description: + "ZipkinSpec defines Zipkin trace configurations.", + properties: { + "endpoint Address": { type: "string" } + }, + required: ["endpointAddress"], + type: "object" + } + }, + required: ["samplingRate"], + type: "object" + }, + wasm: { + description: + "WasmSpec describes the security profile for all Dapr Wasm components.", + properties: { "strict Sandbox": { type: "boolean" } }, + type: "object" + } + }, + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "configurations.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" }, + annotations: { "controller-gen.kubebuilder.io/version": "v0.11.3" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "035a7ea1-8cde-4664-86ca-de60386e4445", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 28 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 35.13555803115171, posY: -144.9939668393419 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 35.13555803115171, y: -144.9939668393419 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ee4fca94-ed27-4c5c-a76f-2985f0606557", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "ee4fca94-ed27-4c5c-a76f-2985f0606557": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["secrets"], + verbs: ["get"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["get"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets"], + verbs: ["get"] + } + ], + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "644cc512-8e91-49b2-b4fb-89e7d352bdc0", + metadata: { binded_by: "d2a9eb6c-6e78-4955-b605-e9475e04bcd6" }, + source: "ee4fca94-ed27-4c5c-a76f-2985f0606557", + subType: "Permission", + target: "c092c53d-07c5-46c7-aab0-44cafe65d54f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ee4fca94-ed27-4c5c-a76f-2985f0606557", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 24 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -192.44167944697202, posY: 254.48793367868385 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -192.44167944697202, y: 254.48793367868385 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4216c153-a7a0-4597-be27-a4b4316cac3f", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator-admin", + services: { + "4216c153-a7a0-4597-be27-a4b4316cac3f": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-operator-admin" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-operator", + namespace: "default" + } + ], + name: "dapr-operator-admin", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4216c153-a7a0-4597-be27-a4b4316cac3f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1033 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: -444.65428650127853, posY: 192.69518749989635 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: -444.65428650127853, y: 192.69518749989635 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-operator" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "operator", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--watch-interval", + "0", + "--max-pod-restarts-per-minute", + "20", + "--log-level", + "info", + "--trust-anchors-file", + "/var/run/secrets/dapr.io/tls/ca.crt", + "--enable-metrics", + "--metrics-port", + "9090" + ], + command: ["/operator"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/operator:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-operator", + ports: [ + { "container Port": 6500 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + }, + { "mount Path": "/tmp", name: "dapr-operator-tmp" } + ] + } + ], + "service Account Name": "dapr-operator", + volumes: [ + { + "empty Dir": { medium: "Memory", "size Limit": "2Mi" }, + name: "dapr-operator-tmp" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-operator", + namespace: "default", + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "328d1ae5-12fc-4f0b-a9ad-a0a03431ff24", + metadata: { port: 443, protocol: "TCP" }, + source: "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d", + subType: "Network", + target: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 43 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -403.70444967267196, posY: -90.77548114409909 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -403.70444967267196, y: -90.77548114409909 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "94c4d4e6-f887-4fec-8d82-1d8525eb6434", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-webhook", + services: { + "94c4d4e6-f887-4fec-8d82-1d8525eb6434": { + namespace: "default", + settings: { + spec: { + ports: [{ port: 443, protocol: "TCP", "target Port": 19443 }], + selector: { app: "dapr-operator" }, + type: "ClusterIP" + }, + name: "dapr-webhook", + namespace: "default", + labels: { + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "94c4d4e6-f887-4fec-8d82-1d8525eb6434", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 21 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -79.66855233111617, posY: -210.7550276338817 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -79.66855233111617, y: -210.7550276338817 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e144edaf-182e-4661-9354-f14ff5eb65fa", + type: "MutatingWebhookConfiguration", + apiVersion: "admissionregistration.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "e144edaf-182e-4661-9354-f14ff5eb65fa": { + settings: { + webhooks: [ + { + "admission Review Versions": ["v1", "v1beta1"], + "client Config": { + service: { + name: "dapr-sidecar-injector", + namespace: "default", + path: "/mutate" + } + }, + "failure Policy": "Ignore", + name: "sidecar-injector.dapr.io", + "reinvocation Policy": "IfNeeded", + rules: [ + { + "api Groups": [""], + "api Versions": ["v1"], + operations: ["CREATE"], + resources: ["pods"] + } + ], + "side Effects": "None" + } + ], + name: "dapr-sidecar-injector", + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "e144edaf-182e-4661-9354-f14ff5eb65fa", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-hexagon", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 19 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/mutatingwebhookconfiguration-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/mutatingwebhookconfiguration-white.svg" + }, + position: { posX: 303.630142657978, posY: 83.90229077462178 }, + whiteboardData: { style: {} } + } + }, + type: "MutatingWebhookConfiguration" + } + } + } + }, + position: { x: 303.630142657978, y: 83.90229077462178 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "8cef58f7-c05c-44f3-9a00-e67ff91d86ad": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sidecar-injector" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "injector", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--healthz-port", + "8080" + ], + command: ["/injector"], + env: [ + { + name: "DAPR_TRUST_ANCHORS_FILE", + value: "/var/run/secrets/dapr.io/tls/ca.crt" + }, + { + name: "DAPR_CONTROL_PLANE_TRUST_DOMAIN", + value: "cluster.local" + }, + { + name: "DAPR_SENTRY_ADDRESS", + value: "dapr-sentry.default.svc.cluster.local:443" + }, + { name: "KUBE_CLUSTER_DOMAIN", value: "cluster.local" }, + { + name: "SIDECAR_IMAGE", + value: "ghcr.io/dapr/daprd:1.14.0-rc.3" + }, + { + name: "SIDECAR_IMAGE_PULL_POLICY", + value: "IfNotPresent" + }, + { name: "SIDECAR_RUN_AS_NON_ROOT", value: "true" }, + { name: "ENABLE_K8S_DOWNWARD_APIS", value: "false" }, + { name: "SIDECAR_DROP_ALL_CAPABILITIES", value: "false" }, + { + name: "SIDECAR_READ_ONLY_ROOT_FILESYSTEM", + value: "true" + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "IGNORE_ENTRYPOINT_TOLERATIONS", + value: + '[{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"alibabacloud.com/eci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"azure.com/aci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"aws\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"huawei.com/cci\\"}]' + }, + { name: "ACTORS_ENABLED", value: "true" }, + { name: "ACTORS_SERVICE_NAME", value: "placement" }, + { + name: "ACTORS_SERVICE_ADDRESS", + value: "dapr-placement-server:50005" + } + ], + "env From": [], + image: "ghcr.io/dapr/injector:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sidecar-injector", + ports: [ + { "container Port": 4000, name: "https", protocol: "TCP" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Devices": [], + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-injector", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 45 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 91.87158447443102, posY: -219.7258594020463 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 91.87158447443102, y: -219.7258594020463 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "244cd1cb-b5cd-44b2-8ad6-73c3af5407da", + label: "Namespace", + type: "Namespace", + version: "v1.25.2", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-system", + services: { + "244cd1cb-b5cd-44b2-8ad6-73c3af5407da": { + settings: { name: "dapr-system" }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "244cd1cb-b5cd-44b2-8ad6-73c3af5407da", + label: "Namespace", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Kubernetes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "45d9a4de-8590-575e-9838-9fdb32058bdd", + metadata: { + isAnnotation: false, + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" + }, + model: { version: "v1.25.2" }, + name: "kubernetes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0.1, + "border-style": "dashed", + "border-width": 2, + height: "657.6696727067516px", + width: "1034.8142569886304px", + "z-index": 16 + }, + styles: + '{"background-image":"none","border-width":2,"border-style":"dashed","background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/namespace-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/namespace-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/namespace-white.svg" + }, + position: { posX: -143.6267306302225, posY: 68.8310293515674 }, + whiteboardData: {} + } + }, + type: "Namespace" + } + } + } + }, + position: { x: -143.6267306302225, y: 68.8310293515674 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "251a7be4-a55a-4632-98eb-f8990b41fc65", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "httpendpoints.dapr.io", + services: { + "251a7be4-a55a-4632-98eb-f8990b41fc65": { + settings: { + spec: { + group: "dapr.io", + names: { + kind: "HTTPEndpoint", + "list Kind": "HTTPEndpointList", + plural: "httpendpoints", + singular: "httpendpoint" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "HTTPEndpoint describes a Dapr HTTPEndpoint type for external service invocation. This endpoint can be external to Dapr, or external to the environment.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + auth: { + description: + "Auth represents authentication details for the component.", + properties: { "secret Store": { type: "string" } }, + required: ["secretStore"], + type: "object" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "HTTPEndpointSpec describes an access specification for allowing external service invocations.", + properties: { + "base Url": { type: "string" }, + "client TLS": { + description: + "TLS describes how to build client or server TLS configurations.", + properties: { + certificate: { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + }, + "private Key": { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + }, + renegotiation: { + default: "Never", + description: + "Renegotiation sets the underlying tls negotiation strategy for an http channel.", + enum: ["Never", "OnceAsClient", "FreelyAsClient"], + type: "string" + }, + "root CA": { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + } + }, + type: "object" + }, + headers: { + items: { + description: "NameValuePair is a name/value pair.", + properties: { + "env Ref": { + description: + "EnvRef is the name of an environmental variable to read the value from.", + type: "string" + }, + name: { + description: "Name of the property.", + type: "string" + }, + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + } + }, + required: ["baseUrl"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "httpendpoints.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "251a7be4-a55a-4632-98eb-f8990b41fc65", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 26 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -74.96983419670973, posY: -65.36243091529568 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -74.96983419670973, y: -65.36243091529568 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d2a9eb6c-6e78-4955-b605-e9475e04bcd6", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "d2a9eb6c-6e78-4955-b605-e9475e04bcd6": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-injector" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-injector", + namespace: "default" + } + ], + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "d2a9eb6c-6e78-4955-b605-e9475e04bcd6", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1030 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -309.15674500069514, posY: 309.17533368057525 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -309.15674500069514, y: 309.17533368057525 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "c8ff435a-8bd1-4005-ba36-b6a938e920e8", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "c8ff435a-8bd1-4005-ba36-b6a938e920e8": { + namespace: "default", + settings: { + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "8d6316e3-7795-4be8-8d78-6423ffb8c695", + metadata: { binded_by: "4216c153-a7a0-4597-be27-a4b4316cac3f" }, + source: "4353bc1c-a747-48fc-b660-852d5a8af579", + subType: "Permission", + target: "c8ff435a-8bd1-4005-ba36-b6a938e920e8" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "58f7862e-f6cf-4220-9225-51b413386c16", + metadata: { binded_by: "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f" }, + source: "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba", + subType: "Permission", + target: "c8ff435a-8bd1-4005-ba36-b6a938e920e8" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "c8ff435a-8bd1-4005-ba36-b6a938e920e8", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 34 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: -565.3101252040004, posY: 225.81547042072327 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: -565.3101252040004, y: 225.81547042072327 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "3b7da215-6569-416e-afd6-b2da583e9019", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "3b7da215-6569-416e-afd6-b2da583e9019": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-placement" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-placement", + namespace: "default" + } + ], + name: "dapr-placement", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "3b7da215-6569-416e-afd6-b2da583e9019", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1029 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 145.30502869694374, posY: 135.75779734440925 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 145.30502869694374, y: 135.75779734440925 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "0eae1c9c-2e32-462c-8404-b4ddee08da08", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server", + services: { + "0eae1c9c-2e32-462c-8404-b4ddee08da08": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [ + { name: "api", port: 50006 }, + { name: "etcd-client", port: 2379 }, + { name: "etcd-httpclient", port: 2330 }, + { name: "etcd-peer", port: 2380 } + ], + "publish Not Ready Addresses": true, + selector: { app: "dapr-scheduler-server" } + }, + name: "dapr-scheduler-server", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "0eae1c9c-2e32-462c-8404-b4ddee08da08", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 1017 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -174.64963540602045, posY: -116.25703868743445 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -174.64963540602045, y: -116.25703868743445 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4c240ff9-31f1-4be6-8a74-5a0f2cbbcf70", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "4c240ff9-31f1-4be6-8a74-5a0f2cbbcf70": { + namespace: "default", + settings: { + spec: { + ports: [ + { + name: "https", + port: 443, + protocol: "TCP", + "target Port": "https" + } + ], + selector: { app: "dapr-sidecar-injector" }, + type: "ClusterIP" + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4c240ff9-31f1-4be6-8a74-5a0f2cbbcf70", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 36 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -70.90265198634945, posY: -138.11946960273008 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -70.90265198634945, y: -138.11946960273008 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": ["coordination.k8s.io"], + "resource Names": ["operator.dapr.io", "webhooks.dapr.io"], + resources: ["leases"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { + "api Groups": [""], + "resource Names": ["operator.dapr.io", "webhooks.dapr.io"], + resources: ["configmaps"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { + "api Groups": ["coordination.k8s.io"], + resources: ["leases"], + verbs: ["create"] + }, + { + "api Groups": [""], + resources: ["configmaps", "events"], + verbs: ["create"] + } + ], + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "58f7862e-f6cf-4220-9225-51b413386c16", + metadata: { binded_by: "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f" }, + source: "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba", + subType: "Permission", + target: "c8ff435a-8bd1-4005-ba36-b6a938e920e8" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1015 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -259.1392039709474, posY: 210.68665181309035 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -259.1392039709474, y: 210.68665181309035 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4feca210-ed3b-4f36-8f26-dd13bf070832", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server", + services: { + "4feca210-ed3b-4f36-8f26-dd13bf070832": { + namespace: "default", + settings: { + spec: { + "pod Management Policy": "Parallel", + replicas: 1, + selector: { "match Labels": { app: "dapr-scheduler-server" } }, + "service Name": "dapr-scheduler-server", + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "scheduler", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--listen-address=0.0.0.0", + "--id", + "$(SCHEDULER_ID)", + "--replica-count", + "1", + "--initial-cluster", + "dapr-scheduler-server-0=http://dapr-scheduler-server-0.dapr-scheduler-server.default.svc.cluster.local:2380", + "--etcd-client-ports", + "dapr-scheduler-server-0=2379", + "--etcd-client-http-ports", + "dapr-scheduler-server-0=2330", + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--etcd-data-dir=/var/run/data/dapr-scheduler/default/$(SCHEDULER_ID)", + "--etcd-space-quota=2147483648", + "--etcd-compaction-mode=periodic", + "--etcd-compaction-retention=24h", + "--tls-enabled", + "--trust-domain=cluster.local", + "--trust-anchors-file=/var/run/secrets/dapr.io/tls/ca.crt", + "--sentry-address=dapr-sentry.default.svc.cluster.local:443", + "--mode=kubernetes" + ], + command: ["/scheduler"], + env: [ + { + name: "SCHEDULER_ID", + "value From": { + "field Ref": { "field Path": "metadata.name" } + } + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "POD_IP", + "value From": { + "field Ref": { "field Path": "status.podIP" } + } + } + ], + image: "ghcr.io/dapr/scheduler:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 10, + "period Seconds": 3 + }, + name: "dapr-scheduler-server", + ports: [ + { "container Port": 50006, name: "api" }, + { "container Port": 2379, name: "etcd-client" }, + { "container Port": 2330, name: "etcd-httpclient" }, + { "container Port": 2380, name: "etcd-peer" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": false, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/data/dapr-scheduler/", + name: "dapr-scheduler-data-dir", + "read Only": false + }, + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token" + } + ] + } + ], + "security Context": { "fs Group": 65532 }, + "service Account Name": "dapr-scheduler", + volumes: [ + { + "empty Dir": { medium: "Memory" }, + name: "dapr-scheduler-data-dir" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-scheduler-server", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4feca210-ed3b-4f36-8f26-dd13bf070832", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 1011 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: -42.998728927591664, posY: 73.90279635929834 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: -42.998728927591664, y: 73.90279635929834 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b39527a7-de38-4937-86bb-cffe545198a4", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "b39527a7-de38-4937-86bb-cffe545198a4": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sentry" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "sentry", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--trust-domain", + "cluster.local" + ], + command: ["/sentry"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/sentry:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sentry", + ports: [ + { "container Port": 50001 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/credentials", + name: "credentials", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-sentry", + volumes: [ + { + name: "credentials", + secret: { "secret Name": "dapr-trust-bundle" } + } + ] + } + } + }, + name: "dapr-sentry", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "87b0b3c9-f6c0-4a26-ad26-1f9c1c9861ff", + metadata: { port: 443, protocol: "TCP" }, + source: "eaf4dcb9-69e9-4238-9dee-0f59636f9887", + subType: "Network", + target: "b39527a7-de38-4937-86bb-cffe545198a4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "b39527a7-de38-4937-86bb-cffe545198a4", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 1005 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -361.4721238367759, posY: -185.58574328413275 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -361.4721238367759, y: -185.58574328413275 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "eaf4dcb9-69e9-4238-9dee-0f59636f9887", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "eaf4dcb9-69e9-4238-9dee-0f59636f9887": { + namespace: "default", + settings: { + spec: { + ports: [ + { name: "grpc", port: 443, protocol: "TCP", "target Port": 50001 } + ], + selector: { app: "dapr-sentry" }, + type: "ClusterIP" + }, + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "87b0b3c9-f6c0-4a26-ad26-1f9c1c9861ff", + metadata: { port: 443, protocol: "TCP" }, + source: "eaf4dcb9-69e9-4238-9dee-0f59636f9887", + subType: "Network", + target: "b39527a7-de38-4937-86bb-cffe545198a4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "eaf4dcb9-69e9-4238-9dee-0f59636f9887", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 1008 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -229.03582279663885, posY: -47.99396683934197 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -229.03582279663885, y: -47.99396683934197 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f8979086-b255-4237-a3d5-082e5b898cdf", + type: "Configuration", + apiVersion: "dapr.io/v1alpha1", + meshType: "dapr", + model: "dapr", + config: { + name: "daprsystem", + services: { + "f8979086-b255-4237-a3d5-082e5b898cdf": { + namespace: "default", + settings: { + spec: { + mTLS: { + "allowed Clock Skew": "15m", + "control Plane Trust Domain": "cluster.local", + enabled: true, + "sentry Address": "dapr-sentry.default.svc.cluster.local:443", + "workload Cert TTL": "24h" + } + }, + name: "daprsystem", + namespace: "default", + labels: { + "app.kubernetes.io/component": "config", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "f8979086-b255-4237-a3d5-082e5b898cdf", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos", + model: "dapr", + modelDisplayName: "Dapr", + primaryColor: "#0d2192", + secondaryColor: "#5266D7", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 29 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/dapr/color/component-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/dapr/white/component-white.svg" + }, + position: { posX: 228.5, posY: 164.5 }, + whiteboardData: { style: {} } + } + }, + type: "Configuration" + } + } + } + }, + position: { x: 228.5, y: 164.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-api", + services: { + "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d": { + namespace: "default", + settings: { + spec: { + ports: [ + { name: "grpc", port: 443, protocol: "TCP", "target Port": 6500 }, + { name: "legacy", port: 80, protocol: "TCP", "target Port": 6500 } + ], + selector: { app: "dapr-operator" }, + type: "ClusterIP" + }, + name: "dapr-api", + namespace: "default", + labels: { + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "328d1ae5-12fc-4f0b-a9ad-a0a03431ff24", + metadata: { port: 443, protocol: "TCP" }, + source: "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d", + subType: "Network", + target: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 31 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -277.09898289989377, posY: 4.475867357367745 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -277.09898289989377, y: 4.475867357367745 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "195b681c-09d2-41c5-9af3-86dd13e3e446", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "195b681c-09d2-41c5-9af3-86dd13e3e446": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-scheduler" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-scheduler", + namespace: "default" + } + ], + name: "dapr-scheduler", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "195b681c-09d2-41c5-9af3-86dd13e3e446", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1032 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 61.86536236607082, posY: 137.89098786583688 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 61.86536236607082, y: 137.89098786583688 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "a3a358df-980e-41bb-845d-1c133f1361dd", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "a3a358df-980e-41bb-845d-1c133f1361dd": { + namespace: "dapr-system", + settings: { + "image Pull Secrets": [], + secrets: [], + name: "dapr-scheduler", + namespace: "dapr-system", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "def6141d-463e-490b-be2a-503fe91b2389", + metadata: { binded_by: "195b681c-09d2-41c5-9af3-86dd13e3e446" }, + source: "c5b673f6-bd45-4491-b4ab-78403013b366", + subType: "Permission", + target: "a3a358df-980e-41bb-845d-1c133f1361dd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "a3a358df-980e-41bb-845d-1c133f1361dd", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + parentId: "244cd1cb-b5cd-44b2-8ad6-73c3af5407da", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 37 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 145.5, posY: 31.5 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 145.5, y: 31.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "9db6d3ee-7f05-4b7a-8a7b-63a24156ebfb", + type: "PodDisruptionBudget", + apiVersion: "policy/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server-disruption-budget", + services: { + "9db6d3ee-7f05-4b7a-8a7b-63a24156ebfb": { + namespace: "default", + settings: { + spec: { + "max Unavailable": "25%", + selector: { + "match Labels": { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + } + }, + name: "dapr-scheduler-server-disruption-budget", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "9db6d3ee-7f05-4b7a-8a7b-63a24156ebfb", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "concave-hexagon", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 20 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/poddisruptionbudget-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/poddisruptionbudget-white.svg" + }, + position: { posX: -217.5, posY: 31.5 }, + whiteboardData: { style: {} } + } + }, + type: "PodDisruptionBudget" + } + } + } + }, + position: { x: -217.5, y: 31.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sentry", + services: { + "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc": { + settings: { name: "dapr-sentry" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 48 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "b39527a7-de38-4937-86bb-cffe545198a4", + position: { posX: -361.4721238367759, posY: -194.58574328413275 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "b39527a7-de38-4937-86bb-cffe545198a4" + }, + position: { x: -361.4721238367759, y: -194.58574328413275 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a62eec9c-c3c7-405a-9356-e84f7442945e", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-operator", + services: { + "a62eec9c-c3c7-405a-9356-e84f7442945e": { + settings: { name: "dapr-operator" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "a62eec9c-c3c7-405a-9356-e84f7442945e", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 49 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec", + position: { posX: -403.70444967267196, posY: -99.77548114409909 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec" + }, + position: { x: -403.70444967267196, y: -99.77548114409909 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sidecar-injector", + services: { + "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8": { + settings: { name: "dapr-sidecar-injector" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1026 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad", + position: { posX: 91.87158447443103, posY: -228.7258594020463 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad" + }, + position: { x: 91.87158447443103, y: -228.7258594020463 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "27799d62-01c6-4aec-b232-fc0c10463309", + metadata: { binded_by: "5dae3c69-0084-4804-95f1-1dc3feb0a772" }, + source: "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19", + subType: "Permission", + target: "c092c53d-07c5-46c7-aab0-44cafe65d54f" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "2ce9df0d-d6be-4487-9ee3-670c24acdb23", + metadata: { binded_by: "33019a1c-9653-4c84-95dd-5e4152ce6275" }, + source: "e8c758d7-8143-44d9-a68d-a0da53b39458", + subType: "Permission", + target: "928910cc-9b0f-4090-998b-e11db2426edf" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "1a8e0076-45a6-4510-b100-1e3a84ab94a2", + metadata: { binded_by: "1813c7c5-7205-454c-8273-de0186a379b0" }, + source: "883aacb3-e178-4315-b6d1-db3b1da8a045", + subType: "Permission", + target: "928910cc-9b0f-4090-998b-e11db2426edf" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "def6141d-463e-490b-be2a-503fe91b2389", + metadata: { binded_by: "195b681c-09d2-41c5-9af3-86dd13e3e446" }, + source: "c5b673f6-bd45-4491-b4ab-78403013b366", + subType: "Permission", + target: "a3a358df-980e-41bb-845d-1c133f1361dd" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "644cc512-8e91-49b2-b4fb-89e7d352bdc0", + metadata: { binded_by: "d2a9eb6c-6e78-4955-b605-e9475e04bcd6" }, + source: "ee4fca94-ed27-4c5c-a76f-2985f0606557", + subType: "Permission", + target: "c092c53d-07c5-46c7-aab0-44cafe65d54f" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "dea2c3e5-5ddb-49ff-b201-7a135e080a33", + metadata: { binded_by: "3b7da215-6569-416e-afd6-b2da583e9019" }, + source: "8ab36b5c-9976-42c0-a4e8-856bde7df33d", + subType: "Permission", + target: "37b229cf-e5e1-44bc-ba5f-6248adba4900" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "8d6316e3-7795-4be8-8d78-6423ffb8c695", + metadata: { binded_by: "4216c153-a7a0-4597-be27-a4b4316cac3f" }, + source: "4353bc1c-a747-48fc-b660-852d5a8af579", + subType: "Permission", + target: "c8ff435a-8bd1-4005-ba36-b6a938e920e8" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "328d1ae5-12fc-4f0b-a9ad-a0a03431ff24", + metadata: { port: 443, protocol: "TCP" }, + source: "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d", + subType: "Network", + target: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "58f7862e-f6cf-4220-9225-51b413386c16", + metadata: { binded_by: "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f" }, + source: "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba", + subType: "Permission", + target: "c8ff435a-8bd1-4005-ba36-b6a938e920e8" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "87b0b3c9-f6c0-4a26-ad26-1f9c1c9861ff", + metadata: { port: 443, protocol: "TCP" }, + source: "eaf4dcb9-69e9-4238-9dee-0f59636f9887", + subType: "Network", + target: "b39527a7-de38-4937-86bb-cffe545198a4" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "f14c6ba9-51d4-4506-9b02-3c4cc91c9b19": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "46", + zIndex: "46", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "1813c7c5-7205-454c-8273-de0186a379b0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1000", + zIndex: "1000", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "928910cc-9b0f-4090-998b-e11db2426edf": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "44", + zIndex: "44", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a89f5dc5-7c5e-4a21-b947-6202dc432dcd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1010", + zIndex: "1010", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-trust-bundle", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-trust-bundle", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "74984291-f854-47cc-ae0c-a4e135593bb3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "23", + zIndex: "23", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-trust-bundle", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "32px", + width: "32px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "1px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "over", + backgroundImageContainment: "over", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-trust-bundle", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "1px", + paddingLeft: "1px", + "padding-right": "1px", + paddingRight: "1px", + "padding-top": "1px", + paddingTop: "1px", + "padding-bottom": "1px", + paddingBottom: "1px" + }, + "36be128a-a07f-443d-94c2-98f729e56006": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1006", + zIndex: "1006", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "components.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "components.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "5dae3c69-0084-4804-95f1-1dc3feb0a772": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1027", + zIndex: "1027", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ae5f9964-d9ee-4ab2-bf8e-57f9c2cb6088": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "39", + zIndex: "39", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "2c2a168b-cc29-4c60-9559-62f976eb867e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "18", + zIndex: "18", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-secret-reader", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "25px", + width: "25px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-secret-reader", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b7cf325c-0631-4869-ad98-b8b51b0f7468": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "27", + zIndex: "27", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "secret-reader", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "secret-reader", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "456ffece-a643-4f05-a7c3-ef0389fc68f4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "32", + zIndex: "32", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "subscriptions.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "subscriptions.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c5b673f6-bd45-4491-b4ab-78403013b366": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "47", + zIndex: "47", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c092c53d-07c5-46c7-aab0-44cafe65d54f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1003", + zIndex: "1003", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e0550ec5-cbdf-4fb2-a0fd-3096c6152d1f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1028", + zIndex: "1028", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b18d15e9-2f3f-4748-b160-b0c1898a4b04": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1014", + zIndex: "1014", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8ab36b5c-9976-42c0-a4e8-856bde7df33d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1012", + zIndex: "1012", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4353bc1c-a747-48fc-b660-852d5a8af579": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "30", + zIndex: "30", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e8c758d7-8143-44d9-a68d-a0da53b39458": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "40", + zIndex: "40", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "dd8a602d-beb3-493e-ae07-f1219109e65b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "38", + zIndex: "38", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "resiliencies.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "resiliencies.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "37b229cf-e5e1-44bc-ba5f-6248adba4900": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1018", + zIndex: "1018", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "33019a1c-9653-4c84-95dd-5e4152ce6275": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1029", + zIndex: "1029", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "883aacb3-e178-4315-b6d1-db3b1da8a045": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "33", + zIndex: "33", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "035a7ea1-8cde-4664-86ca-de60386e4445": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "28", + zIndex: "28", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "configurations.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "configurations.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ee4fca94-ed27-4c5c-a76f-2985f0606557": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "24", + zIndex: "24", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4216c153-a7a0-4597-be27-a4b4316cac3f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1030", + zIndex: "1030", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "43", + zIndex: "43", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "94c4d4e6-f887-4fec-8d82-1d8525eb6434": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "21", + zIndex: "21", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-webhook", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-webhook", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "e144edaf-182e-4661-9354-f14ff5eb65fa": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "19", + zIndex: "19", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-hexagon", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI2MDkxXzE2NjQ4KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNzkuNDM1OSA1MS4yMzJINzQuNzY1N0w4Mi4zODM2IDYwLjA3MzdMOTAuMDAxNiA1MS4yMzJIODUuNjYyNUM4NS4yODc1IDQ4LjU3NjcgODQuMjEzNCA0Ni4wNTYgODIuNTM0IDQzLjkzOTNDODAuNDEyIDQxLjI2NDcgNzcuNDQ5NCAzOS4zOTM3IDc0LjEzMTQgMzguNjMyNUM3MC44MTM0IDM3Ljg3MTMgNjcuMzM2NSAzOC4yNjUxIDY0LjI3MDIgMzkuNzQ5NEM2MS4yMDM5IDQxLjIzMzcgNTguNzI5OSA0My43MjA2IDU3LjI1MzMgNDYuODAyN0M1NS43NzY3IDQ5Ljg4NDggNTUuMzg1IDUzLjM3OTYgNTYuMTQyNCA1Ni43MTQ3QzU2Ljg5OTggNjAuMDQ5OCA1OC43NjEzIDYzLjAyNzYgNjEuNDIyMyA2NS4xNjA0QzY0LjA4MzIgNjcuMjkzMiA2Ny4zODU3IDY4LjQ1NDYgNzAuNzg5MSA2OC40NTQ1Qzc0LjE5MjQgNjguNDU0NCA3Ny40OTQ5IDY3LjI5MjggODAuMTU1NyA2NS4xNTk4TDc2LjMzODcgNjAuMzQ5MkM3NC43NjIyIDYxLjYxMyA3Mi44MDU0IDYyLjMwMTMgNzAuNzg4OSA2Mi4zMDE0QzY4Ljc3MjMgNjIuMzAxNCA2Ni44MTU1IDYxLjYxMzMgNjUuMjM4OSA2MC4zNDk1QzYzLjY2MjMgNTkuMDg1OCA2Mi41NTkzIDU3LjMyMTQgNjIuMTEwNSA1NS4zNDUzQzYxLjY2MTcgNTMuMzY5MyA2MS44OTM4IDUxLjI5ODYgNjIuNzY4NyA0OS40NzI0QzYzLjY0MzYgNDcuNjQ2MSA2NS4xMDk1IDQ2LjE3MjcgNjYuOTI2NCA0NS4yOTMyQzY4Ljc0MzIgNDQuNDEzNyA3MC44MDMzIDQ0LjE4MDQgNzIuNzY5MyA0NC42MzE0Qzc0LjczNTIgNDUuMDgyNCA3Ni40OTA2IDQ2LjE5MSA3Ny43NDc5IDQ3Ljc3NTdDNzguNTU4NyA0OC43OTc3IDc5LjEzMTQgNDkuOTc4NiA3OS40MzU5IDUxLjIzMloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjIuNzI3IDU2LjcwNDlMMjIuNzQ0NiA1Ni43MzU4TDIyLjc2NTggNTYuNzczNkMyNC41MDQ5IDU5Ljg5ODQgMjMuMzk2NyA2My44NDk4IDIwLjI5MDYgNjUuNTk5NEMxNy4xODQ1IDY3LjM0OSAxMy4yNTY2IDY2LjIzNDEgMTEuNTE3NSA2My4xMDkzQzkuNzc4MzkgNTkuOTg0NSAxMC44ODY2IDU2LjAzMzEgMTMuOTkyNyA1NC4yODM1QzE1LjIzNTkgNTMuNTgzMyAxNi42MTA3IDUzLjM0MTkgMTcuOTI0MSA1My41MDQ1TDI0LjYwMiA0Mi40NDY0QzIyLjUxOTUgNDAuODgxMiAyMC44MTk5IDM4Ljg0NjEgMTkuNjQ1NiAzNi40OTU4QzE4LjIxOTQgMzMuNjQxNCAxNy42MjY1IDMwLjQzODggMTcuOTM1NSAyNy4yNTkzQzE4LjI0NDYgMjQuMDc5NyAxOS40NDI5IDIxLjA1MzMgMjEuMzkxNiAxOC41MzA4QzIzLjM0MDQgMTYuMDA4NCAyNS45NTk3IDE0LjA5MzEgMjguOTQ2MiAxMy4wMDY5QzMxLjkzMjcgMTEuOTIwOCAzNS4xNjM5IDExLjcwODMgMzguMjY1NiAxMi4zOTRDNDEuMzY3MiAxMy4wNzk3IDQ0LjIxMjEgMTQuNjM1NiA0Ni40NzA4IDE2Ljg4MTNDNDguNzI5NCAxOS4xMjcgNTAuMzA5MiAyMS45NzA3IDUxLjAyNzEgMjUuMDgyN0M1MS43NDUgMjguMTk0NyA1MS41NzE3IDMxLjQ0NzcgNTAuNTI3MSAzNC40NjQ2TDQ0LjY0OTEgMzIuNDA0OUM0NS4zMDY3IDMwLjUwNTUgNDUuNDE1OSAyOC40NTc1IDQ0Ljk2MzkgMjYuNDk4M0M0NC41MTE5IDI0LjUzOTEgNDMuNTE3MyAyMi43NDg4IDQyLjA5NTMgMjEuMzM0OUM0MC42NzM0IDE5LjkyMTEgMzguODgyMyAxOC45NDE2IDM2LjkyOTYgMTguNTA5OUMzNC45NzY5IDE4LjA3ODIgMzIuOTQyNiAxOC4yMTIgMzEuMDYyNCAxOC44OTU4QzI5LjE4MjIgMTkuNTc5NiAyNy41MzMxIDIwLjc4NTQgMjYuMzA2MiAyMi4zNzM1QzI1LjA3OTQgMjMuOTYxNSAyNC4zMjQ5IDI1Ljg2NjkgMjQuMTMwNCAyNy44Njg2QzIzLjkzNTggMjkuODcwNCAyNC4zMDkxIDMxLjg4NjYgMjUuMjA3IDMzLjY4MzdDMjUuOTM3MSAzNS4xNDUxIDI2Ljk4OTkgMzYuNDEyOSAyOC4yNzg4IDM3LjM5MzNMMzIuNzQxOSA0MC4xMjFMMjIuNzI3IDU2LjcwNDlaTTM0Ljc1MDggMzUuNjczMUMzNC43NzY1IDM1LjY3NDUgMzQuODAyMSAzNS42NzU3IDM0LjgyNzggMzUuNjc2OEw0My40MTY1IDUzLjA1MUw0OC4wNiA1MC43Mjc4QzQ4LjgzMjUgNTAuNDMyNiA0OS42MzUzIDUwLjIzIDUwLjQ1MTggNTAuMTIzMUM1MC43MDY5IDQ3Ljg4NDcgNTEuMjk2IDQ1Ljc1MTEgNTIuMTY2OCA0My43NzU5QzUwIDQzLjczMDUgNDcuODQ1OSA0NC4xMDczIDQ1LjgyMzUgNDQuODg0MUw0MC4wOTIyIDMzLjI5MDRDNDAuOTI1NCAzMi4yNjE4IDQxLjQ1MzQgMzAuOTY3NSA0MS41Mjg2IDI5LjU0MUM0MS43MTcgMjUuOTY0OCAzOC45ODggMjIuOTEyIDM1LjQzMzEgMjIuNzIyNUMzMS44NzgzIDIyLjUzMjkgMjguODQzNyAyNS4yNzgzIDI4LjY1NTMgMjguODU0NkMyOC40NjY5IDMyLjQzMDggMzEuMTk1OSAzNS40ODM2IDM0Ljc1MDggMzUuNjczMVpNNjMuNjA2MyA3Mi43MjE3QzYxLjU1NTMgNzEuODg5NSA1OS42NjI0IDcwLjczNTkgNTcuOTg2NSA2OS4zMjE3QzU2Ljg1NjcgNzAuMTM3NiA1NS41NzMxIDcwLjcyNSA1NC4yMDY5IDcxLjA0MzhDNTIuMjU5MyA3MS40OTgyIDUwLjIyMzYgNzEuMzg4MSA0OC4zMzU3IDcwLjcyNjJDNDYuNDQ3NyA3MC4wNjQzIDQ0Ljc4NDkgNjguODc3OCA0My41Mzk4IDY3LjMwNDFMMzguNjY5OCA3MS4yMDM3QzQwLjY0NzQgNzMuNzAzMyA0My4yODg2IDc1LjU4OCA0Ni4yODc0IDc2LjYzOTNDNDkuMjg2MSA3Ny42OTA2IDUyLjUxOTYgNzcuODY1NSA1NS42MTMyIDc3LjE0MzdDNTguNjMzMyA3Ni40MzkgNjEuMzk5MyA3NC45MDc5IDYzLjYwNjMgNzIuNzIxN1pNNTQuODA1MiA2NS45ODc2QzUzLjAyMjIgNjYuNzU0OCA1MC45MTY1IDY2LjcwNzEgNDkuMDk3MyA2NS42NzRDNDcuODU2OCA2NC45Njk0IDQ2LjkzNzQgNjMuOTEzNCA0Ni4zOTI5IDYyLjcwMDFMMzMuNTI4NCA2Mi43MDcxQzMzLjI4MDggNjUuMzA4NyAzMi40MzU5IDY3LjgyNTMgMzEuMDUxIDcwLjA1NDZDMjkuMzY4IDcyLjc2MzggMjYuOTU2MyA3NC45Mzc3IDI0LjA5NTQgNzYuMzI0NEMyMS4yMzQ2IDc3LjcxMTIgMTguMDQxNyA3OC4yNTM5IDE0Ljg4NjcgNzcuODg5OEMxMS43MzE4IDc3LjUyNTcgOC43NDQgNzYuMjY5NyA2LjI2OTYgNzQuMjY3M0MzLjc5NTE5IDcyLjI2NDggMS45MzU0OSA2OS41OTggMC45MDYwMDUgNjYuNTc1OEMtMC4xMjM0NzggNjMuNTUzNiAtMC4yODA1OTkgNjAuMjk5OCAwLjQ1Mjg1NSA1Ny4xOTE1QzEuMTg2MzEgNTQuMDgzMSAyLjc4MDMxIDUxLjI0NzUgNS4wNTAxMyA0OS4wMTMyQzcuMzE5OTUgNDYuNzc4OSAxMC4xNzI3IDQ1LjIzNzUgMTMuMjc3NyA0NC41Njc0TDE0LjU4MzEgNTAuNjlDMTIuNjI4MyA1MS4xMTE4IDEwLjgzMjMgNTIuMDgyMyA5LjQwMzI2IDUzLjQ4ODlDNy45NzQyNiA1NC44OTU2IDYuOTcwNzIgNTYuNjgwOCA2LjUwODk2IDU4LjYzNzdDNi4wNDcyIDYwLjU5NDcgNi4xNDYxMSA2Mi42NDMyIDYuNzk0MjUgNjQuNTQ1OEM3LjQ0MjM4IDY2LjQ0ODUgOC42MTMxOSA2OC4xMjc1IDEwLjE3MSA2OS4zODgyQzExLjcyODggNzAuNjQ4OCAxMy42MDk4IDcxLjQzOTYgMTUuNTk2MSA3MS42Njg4QzE3LjU4MjQgNzEuODk4IDE5LjU5MjUgNzEuNTU2MyAyMS4zOTM2IDcwLjY4MzNDMjMuMTk0NyA2OS44MTAyIDI0LjcxMzEgNjguNDQxNiAyNS43NzI2IDY2LjczNkMyNi42MzYyIDY1LjM0NiAyNy4xNjYyIDYzLjc3ODUgMjcuMzI3OCA2Mi4xNTczTDI3LjMyNSA1Ni45MTkyTDQ2LjYxNDUgNTYuOTA4OUw0Ni42MjYxIDU2Ljg4NzhMNDYuNjUyOSA1Ni44Mzk1QzQ3LjQ5MTQgNTUuMzQ1MiA0OC44MzA4IDU0LjMxNDEgNTAuMzM5NiA1My44MzkxQzUwLjU4MDkgNTguNDEyOCA1Mi4yMTExIDYyLjYwNzYgNTQuODA1MiA2NS45ODc2WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yNjA5MV8xNjY0OCI+CjxyZWN0IHdpZHRoPSI5MCIgaGVpZ2h0PSI5MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI2MDkxXzE2NjQ4KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNzkuNDM1OSA1MS4yMzJINzQuNzY1N0w4Mi4zODM2IDYwLjA3MzdMOTAuMDAxNiA1MS4yMzJIODUuNjYyNUM4NS4yODc1IDQ4LjU3NjcgODQuMjEzNCA0Ni4wNTYgODIuNTM0IDQzLjkzOTNDODAuNDEyIDQxLjI2NDcgNzcuNDQ5NCAzOS4zOTM3IDc0LjEzMTQgMzguNjMyNUM3MC44MTM0IDM3Ljg3MTMgNjcuMzM2NSAzOC4yNjUxIDY0LjI3MDIgMzkuNzQ5NEM2MS4yMDM5IDQxLjIzMzcgNTguNzI5OSA0My43MjA2IDU3LjI1MzMgNDYuODAyN0M1NS43NzY3IDQ5Ljg4NDggNTUuMzg1IDUzLjM3OTYgNTYuMTQyNCA1Ni43MTQ3QzU2Ljg5OTggNjAuMDQ5OCA1OC43NjEzIDYzLjAyNzYgNjEuNDIyMyA2NS4xNjA0QzY0LjA4MzIgNjcuMjkzMiA2Ny4zODU3IDY4LjQ1NDYgNzAuNzg5MSA2OC40NTQ1Qzc0LjE5MjQgNjguNDU0NCA3Ny40OTQ5IDY3LjI5MjggODAuMTU1NyA2NS4xNTk4TDc2LjMzODcgNjAuMzQ5MkM3NC43NjIyIDYxLjYxMyA3Mi44MDU0IDYyLjMwMTMgNzAuNzg4OSA2Mi4zMDE0QzY4Ljc3MjMgNjIuMzAxNCA2Ni44MTU1IDYxLjYxMzMgNjUuMjM4OSA2MC4zNDk1QzYzLjY2MjMgNTkuMDg1OCA2Mi41NTkzIDU3LjMyMTQgNjIuMTEwNSA1NS4zNDUzQzYxLjY2MTcgNTMuMzY5MyA2MS44OTM4IDUxLjI5ODYgNjIuNzY4NyA0OS40NzI0QzYzLjY0MzYgNDcuNjQ2MSA2NS4xMDk1IDQ2LjE3MjcgNjYuOTI2NCA0NS4yOTMyQzY4Ljc0MzIgNDQuNDEzNyA3MC44MDMzIDQ0LjE4MDQgNzIuNzY5MyA0NC42MzE0Qzc0LjczNTIgNDUuMDgyNCA3Ni40OTA2IDQ2LjE5MSA3Ny43NDc5IDQ3Ljc3NTdDNzguNTU4NyA0OC43OTc3IDc5LjEzMTQgNDkuOTc4NiA3OS40MzU5IDUxLjIzMloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjIuNzI3IDU2LjcwNDlMMjIuNzQ0NiA1Ni43MzU4TDIyLjc2NTggNTYuNzczNkMyNC41MDQ5IDU5Ljg5ODQgMjMuMzk2NyA2My44NDk4IDIwLjI5MDYgNjUuNTk5NEMxNy4xODQ1IDY3LjM0OSAxMy4yNTY2IDY2LjIzNDEgMTEuNTE3NSA2My4xMDkzQzkuNzc4MzkgNTkuOTg0NSAxMC44ODY2IDU2LjAzMzEgMTMuOTkyNyA1NC4yODM1QzE1LjIzNTkgNTMuNTgzMyAxNi42MTA3IDUzLjM0MTkgMTcuOTI0MSA1My41MDQ1TDI0LjYwMiA0Mi40NDY0QzIyLjUxOTUgNDAuODgxMiAyMC44MTk5IDM4Ljg0NjEgMTkuNjQ1NiAzNi40OTU4QzE4LjIxOTQgMzMuNjQxNCAxNy42MjY1IDMwLjQzODggMTcuOTM1NSAyNy4yNTkzQzE4LjI0NDYgMjQuMDc5NyAxOS40NDI5IDIxLjA1MzMgMjEuMzkxNiAxOC41MzA4QzIzLjM0MDQgMTYuMDA4NCAyNS45NTk3IDE0LjA5MzEgMjguOTQ2MiAxMy4wMDY5QzMxLjkzMjcgMTEuOTIwOCAzNS4xNjM5IDExLjcwODMgMzguMjY1NiAxMi4zOTRDNDEuMzY3MiAxMy4wNzk3IDQ0LjIxMjEgMTQuNjM1NiA0Ni40NzA4IDE2Ljg4MTNDNDguNzI5NCAxOS4xMjcgNTAuMzA5MiAyMS45NzA3IDUxLjAyNzEgMjUuMDgyN0M1MS43NDUgMjguMTk0NyA1MS41NzE3IDMxLjQ0NzcgNTAuNTI3MSAzNC40NjQ2TDQ0LjY0OTEgMzIuNDA0OUM0NS4zMDY3IDMwLjUwNTUgNDUuNDE1OSAyOC40NTc1IDQ0Ljk2MzkgMjYuNDk4M0M0NC41MTE5IDI0LjUzOTEgNDMuNTE3MyAyMi43NDg4IDQyLjA5NTMgMjEuMzM0OUM0MC42NzM0IDE5LjkyMTEgMzguODgyMyAxOC45NDE2IDM2LjkyOTYgMTguNTA5OUMzNC45NzY5IDE4LjA3ODIgMzIuOTQyNiAxOC4yMTIgMzEuMDYyNCAxOC44OTU4QzI5LjE4MjIgMTkuNTc5NiAyNy41MzMxIDIwLjc4NTQgMjYuMzA2MiAyMi4zNzM1QzI1LjA3OTQgMjMuOTYxNSAyNC4zMjQ5IDI1Ljg2NjkgMjQuMTMwNCAyNy44Njg2QzIzLjkzNTggMjkuODcwNCAyNC4zMDkxIDMxLjg4NjYgMjUuMjA3IDMzLjY4MzdDMjUuOTM3MSAzNS4xNDUxIDI2Ljk4OTkgMzYuNDEyOSAyOC4yNzg4IDM3LjM5MzNMMzIuNzQxOSA0MC4xMjFMMjIuNzI3IDU2LjcwNDlaTTM0Ljc1MDggMzUuNjczMUMzNC43NzY1IDM1LjY3NDUgMzQuODAyMSAzNS42NzU3IDM0LjgyNzggMzUuNjc2OEw0My40MTY1IDUzLjA1MUw0OC4wNiA1MC43Mjc4QzQ4LjgzMjUgNTAuNDMyNiA0OS42MzUzIDUwLjIzIDUwLjQ1MTggNTAuMTIzMUM1MC43MDY5IDQ3Ljg4NDcgNTEuMjk2IDQ1Ljc1MTEgNTIuMTY2OCA0My43NzU5QzUwIDQzLjczMDUgNDcuODQ1OSA0NC4xMDczIDQ1LjgyMzUgNDQuODg0MUw0MC4wOTIyIDMzLjI5MDRDNDAuOTI1NCAzMi4yNjE4IDQxLjQ1MzQgMzAuOTY3NSA0MS41Mjg2IDI5LjU0MUM0MS43MTcgMjUuOTY0OCAzOC45ODggMjIuOTEyIDM1LjQzMzEgMjIuNzIyNUMzMS44NzgzIDIyLjUzMjkgMjguODQzNyAyNS4yNzgzIDI4LjY1NTMgMjguODU0NkMyOC40NjY5IDMyLjQzMDggMzEuMTk1OSAzNS40ODM2IDM0Ljc1MDggMzUuNjczMVpNNjMuNjA2MyA3Mi43MjE3QzYxLjU1NTMgNzEuODg5NSA1OS42NjI0IDcwLjczNTkgNTcuOTg2NSA2OS4zMjE3QzU2Ljg1NjcgNzAuMTM3NiA1NS41NzMxIDcwLjcyNSA1NC4yMDY5IDcxLjA0MzhDNTIuMjU5MyA3MS40OTgyIDUwLjIyMzYgNzEuMzg4MSA0OC4zMzU3IDcwLjcyNjJDNDYuNDQ3NyA3MC4wNjQzIDQ0Ljc4NDkgNjguODc3OCA0My41Mzk4IDY3LjMwNDFMMzguNjY5OCA3MS4yMDM3QzQwLjY0NzQgNzMuNzAzMyA0My4yODg2IDc1LjU4OCA0Ni4yODc0IDc2LjYzOTNDNDkuMjg2MSA3Ny42OTA2IDUyLjUxOTYgNzcuODY1NSA1NS42MTMyIDc3LjE0MzdDNTguNjMzMyA3Ni40MzkgNjEuMzk5MyA3NC45MDc5IDYzLjYwNjMgNzIuNzIxN1pNNTQuODA1MiA2NS45ODc2QzUzLjAyMjIgNjYuNzU0OCA1MC45MTY1IDY2LjcwNzEgNDkuMDk3MyA2NS42NzRDNDcuODU2OCA2NC45Njk0IDQ2LjkzNzQgNjMuOTEzNCA0Ni4zOTI5IDYyLjcwMDFMMzMuNTI4NCA2Mi43MDcxQzMzLjI4MDggNjUuMzA4NyAzMi40MzU5IDY3LjgyNTMgMzEuMDUxIDcwLjA1NDZDMjkuMzY4IDcyLjc2MzggMjYuOTU2MyA3NC45Mzc3IDI0LjA5NTQgNzYuMzI0NEMyMS4yMzQ2IDc3LjcxMTIgMTguMDQxNyA3OC4yNTM5IDE0Ljg4NjcgNzcuODg5OEMxMS43MzE4IDc3LjUyNTcgOC43NDQgNzYuMjY5NyA2LjI2OTYgNzQuMjY3M0MzLjc5NTE5IDcyLjI2NDggMS45MzU0OSA2OS41OTggMC45MDYwMDUgNjYuNTc1OEMtMC4xMjM0NzggNjMuNTUzNiAtMC4yODA1OTkgNjAuMjk5OCAwLjQ1Mjg1NSA1Ny4xOTE1QzEuMTg2MzEgNTQuMDgzMSAyLjc4MDMxIDUxLjI0NzUgNS4wNTAxMyA0OS4wMTMyQzcuMzE5OTUgNDYuNzc4OSAxMC4xNzI3IDQ1LjIzNzUgMTMuMjc3NyA0NC41Njc0TDE0LjU4MzEgNTAuNjlDMTIuNjI4MyA1MS4xMTE4IDEwLjgzMjMgNTIuMDgyMyA5LjQwMzI2IDUzLjQ4ODlDNy45NzQyNiA1NC44OTU2IDYuOTcwNzIgNTYuNjgwOCA2LjUwODk2IDU4LjYzNzdDNi4wNDcyIDYwLjU5NDcgNi4xNDYxMSA2Mi42NDMyIDYuNzk0MjUgNjQuNTQ1OEM3LjQ0MjM4IDY2LjQ0ODUgOC42MTMxOSA2OC4xMjc1IDEwLjE3MSA2OS4zODgyQzExLjcyODggNzAuNjQ4OCAxMy42MDk4IDcxLjQzOTYgMTUuNTk2MSA3MS42Njg4QzE3LjU4MjQgNzEuODk4IDE5LjU5MjUgNzEuNTU2MyAyMS4zOTM2IDcwLjY4MzNDMjMuMTk0NyA2OS44MTAyIDI0LjcxMzEgNjguNDQxNiAyNS43NzI2IDY2LjczNkMyNi42MzYyIDY1LjM0NiAyNy4xNjYyIDYzLjc3ODUgMjcuMzI3OCA2Mi4xNTczTDI3LjMyNSA1Ni45MTkyTDQ2LjYxNDUgNTYuOTA4OUw0Ni42MjYxIDU2Ljg4NzhMNDYuNjUyOSA1Ni44Mzk1QzQ3LjQ5MTQgNTUuMzQ1MiA0OC44MzA4IDU0LjMxNDEgNTAuMzM5NiA1My44MzkxQzUwLjU4MDkgNTguNDEyOCA1Mi4yMTExIDYyLjYwNzYgNTQuODA1MiA2NS45ODc2WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yNjA5MV8xNjY0OCI+CjxyZWN0IHdpZHRoPSI5MCIgaGVpZ2h0PSI5MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8cef58f7-c05c-44f3-9a00-e67ff91d86ad": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "45", + zIndex: "45", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "244cd1cb-b5cd-44b2-8ad6-73c3af5407da": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "16", + zIndex: "16", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-system", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "657.6696727067516px", + width: "1034.8142569886304px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-system", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "251a7be4-a55a-4632-98eb-f8990b41fc65": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "26", + zIndex: "26", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "httpendpoints.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "httpendpoints.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "d2a9eb6c-6e78-4955-b605-e9475e04bcd6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1031", + zIndex: "1031", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c8ff435a-8bd1-4005-ba36-b6a938e920e8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "34", + zIndex: "34", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "3b7da215-6569-416e-afd6-b2da583e9019": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1032", + zIndex: "1032", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "0eae1c9c-2e32-462c-8404-b4ddee08da08": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1017", + zIndex: "1017", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "4c240ff9-31f1-4be6-8a74-5a0f2cbbcf70": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "36", + zIndex: "36", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "05eb927c-5c0e-4ec6-bdde-3a9fc0a39eba": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1015", + zIndex: "1015", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4feca210-ed3b-4f36-8f26-dd13bf070832": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1011", + zIndex: "1011", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b39527a7-de38-4937-86bb-cffe545198a4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1005", + zIndex: "1005", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "eaf4dcb9-69e9-4238-9dee-0f59636f9887": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1008", + zIndex: "1008", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "f8979086-b255-4237-a3d5-082e5b898cdf": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "29", + zIndex: "29", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "daprsystem", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(13,33,146)", + backgroundColor: "rgb(13,33,146)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(15,39,175)", + borderColor: "rgb(15,39,175)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "daprsystem", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ed94696d-cb4c-48a4-ba90-58f16b2ebe9d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "31", + zIndex: "31", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-api", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-api", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "195b681c-09d2-41c5-9af3-86dd13e3e446": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1033", + zIndex: "1033", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a3a358df-980e-41bb-845d-1c133f1361dd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "37", + zIndex: "37", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "9db6d3ee-7f05-4b7a-8a7b-63a24156ebfb": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "20", + zIndex: "20", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server-disruption-budget", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "concave-hexagon", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server-disruption-budget", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "48", + zIndex: "48", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a62eec9c-c3c7-405a-9356-e84f7442945e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "49", + zIndex: "49", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1026", + zIndex: "1026", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "27799d62-01c6-4aec-b232-fc0c10463309": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2ce9df0d-d6be-4487-9ee3-670c24acdb23": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1a8e0076-45a6-4510-b100-1e3a84ab94a2": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "def6141d-463e-490b-be2a-503fe91b2389": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "644cc512-8e91-49b2-b4fb-89e7d352bdc0": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "dea2c3e5-5ddb-49ff-b201-7a135e080a33": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "8d6316e3-7795-4be8-8d78-6423ffb8c695": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "328d1ae5-12fc-4f0b-a9ad-a0a03431ff24": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "443/TCP", + targetLabel: "443/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "58f7862e-f6cf-4220-9225-51b413386c16": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "87b0b3c9-f6c0-4a26-ad26-1f9c1c9861ff": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "443/TCP", + targetLabel: "443/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-4ba61d36-52ce-4582-b5ef-a2663afa270a-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/src/assets/images/learning-path/embed-test/embedded-design-embed1.js b/src/assets/images/learning-path/embed-test/embedded-design-embed1.js new file mode 100644 index 000000000000..62d98560a122 --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-embed1.js @@ -0,0 +1,1759 @@ +console.log("embedded-design-embed1.js"); + +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; + +console.log("cytoscape", cytoscape); +const data = { + elements: { + nodes: [ + { + data: { + id: "95837169-7585-44f3-acb1-718b529fdc7c", + label: "chaos-ae", + type: "Chaos", + version: "0.2.0", + apiVersion: "shardingsphere.apache.org/v1alpha1", + meshType: "apache-shardingsphere-operator-charts", + model: "apache-shardingsphere-operator-charts", + config: { + name: "chaos-ae", + services: { + "95837169-7585-44f3-acb1-718b529fdc7c": { + namespace: "default", + settings: { + spec: { + "network Chaos": { + source: { + "expression Selectors": [], + namespaces: [], + nodes: [], + }, + target: { + "expression Selectors": [], + namespaces: [], + nodes: [], + }, + }, + "pod Chaos": { + params: { "container Kill": { "container Names": [] } }, + selector: { + "expression Selectors": [], + namespaces: [], + nodes: [], + }, + }, + "pressure Cfg": { "dist SQLs": [] }, + }, + name: "chaos-ae", + namespace: "default", + }, + traits: { + meshmap: { + edges: [], + id: "95837169-7585-44f3-acb1-718b529fdc7c", + label: "chaos-ae", + "meshmodel-data": { + category: { + metadata: null, + name: "App Definition and Development", + }, + components: [], + displayName: "Apache Shardingsphere Operator Charts", + displayhostname: "", + hostID: "00000000-0000-0000-0000-000000000000", + hostname: "", + metadata: { + isAnnotation: false, + source_uri: + "https://github.com/apache/shardingsphere-on-cloud/releases/download/0.3.0/apache-shardingsphere-operator-charts-0.3.0.tgz", + svgColor: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg", + svgWhite: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg", + }, + name: "apache-shardingsphere-operator-charts", + relationships: [], + version: "0.2.0", + }, + "meshmodel-metadata": { + capabilities: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "https://layer5.io/company/brand", + model: "apache-shardingsphere-operator-charts", + modelDisplayName: "Apache Shardingsphere Operator Charts", + primaryColor: "#F26F23", + published: true, + secondaryColor: "#00D3A9", + shape: "circle", + styleOverrides: "", + subCategory: "Database", + svgColor: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg", + }, + position: { + posX: 1024.1919169702674, + posY: 344.95981858085764, + }, + whiteboardData: { style: { "z-index": 31 } }, + }, + }, + type: "Chaos", + }, + }, + }, + inventoryLength: 0, + shape: "circle", + color: "rgb(242,111,35)", + }, + position: { x: 1024.1919169702674, y: 344.95981858085764 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "", + }, + { + data: { + id: "8082e593-8549-44a4-bc66-54d0bf81bde6", + label: "compute-node-an", + type: "ComputeNode", + version: "0.2.0", + apiVersion: "shardingsphere.apache.org/v1alpha1", + meshType: "apache-shardingsphere-operator-charts", + model: "apache-shardingsphere-operator-charts", + config: { + name: "compute-node-an", + services: { + "8082e593-8549-44a4-bc66-54d0bf81bde6": { + namespace: "default", + settings: { + spec: { + bootstrap: { + "server Config": { authority: { users: [] } }, + }, + env: [], + "image Pull Secrets": [], + "port Bindings": [], + probes: { + "liveness Probe": { + exec: { command: [] }, + "http Get": { "http Headers": [] }, + }, + "readiness Probe": { + exec: { command: [] }, + "http Get": { "http Headers": [] }, + }, + "startup Probe": { + exec: { command: [] }, + "http Get": { "http Headers": [] }, + }, + }, + resources: { claims: [] }, + selector: { "match Expressions": [] }, + }, + name: "compute-node-an", + namespace: "default", + }, + traits: { + meshmap: { + edges: [], + id: "8082e593-8549-44a4-bc66-54d0bf81bde6", + label: "compute-node-an", + "meshmodel-data": { + category: { + metadata: null, + name: "App Definition and Development", + }, + components: [], + displayName: "Apache Shardingsphere Operator Charts", + displayhostname: "", + hostID: "00000000-0000-0000-0000-000000000000", + hostname: "", + metadata: { + isAnnotation: false, + source_uri: + "https://github.com/apache/shardingsphere-on-cloud/releases/download/0.3.0/apache-shardingsphere-operator-charts-0.3.0.tgz", + svgColor: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg", + svgWhite: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg", + }, + name: "apache-shardingsphere-operator-charts", + relationships: [], + version: "0.2.0", + }, + "meshmodel-metadata": { + capabilities: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "https://layer5.io/company/brand", + model: "apache-shardingsphere-operator-charts", + modelDisplayName: "Apache Shardingsphere Operator Charts", + primaryColor: "#F26F23", + published: true, + secondaryColor: "#00D3A9", + shape: "circle", + styleOverrides: "", + subCategory: "Database", + svgColor: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/computenode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg", + }, + position: { + posX: 1023.165968478728, + posY: 283.63167100075435, + }, + whiteboardData: { style: { "z-index": 29 } }, + }, + }, + type: "ComputeNode", + }, + }, + }, + inventoryLength: 0, + shape: "circle", + color: "rgb(242,111,35)", + }, + position: { x: 1023.165968478728, y: 283.63167100075435 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "", + }, + { + data: { + id: "4dd7b384-2e02-4c50-ad8b-3cd296262790", + label: "compute-node-wo", + type: "ComputeNode", + version: "0.2.0", + apiVersion: "shardingsphere.apache.org/v1alpha1", + meshType: "apache-shardingsphere-operator-charts", + model: "apache-shardingsphere-operator-charts", + config: { + name: "compute-node-wo", + services: { + "4dd7b384-2e02-4c50-ad8b-3cd296262790": { + namespace: "default", + settings: { + spec: { + bootstrap: { + "server Config": { authority: { users: [] } }, + }, + env: [], + "image Pull Secrets": [], + "port Bindings": [], + probes: { + "liveness Probe": { + exec: { command: [] }, + "http Get": { "http Headers": [] }, + }, + "readiness Probe": { + exec: { command: [] }, + "http Get": { "http Headers": [] }, + }, + "startup Probe": { + exec: { command: [] }, + "http Get": { "http Headers": [] }, + }, + }, + resources: { claims: [] }, + selector: { "match Expressions": [] }, + }, + name: "compute-node-wo", + namespace: "default", + }, + traits: { + meshmap: { + edges: [], + id: "4dd7b384-2e02-4c50-ad8b-3cd296262790", + label: "compute-node-wo", + "meshmodel-data": { + category: { + metadata: null, + name: "App Definition and Development", + }, + components: [], + displayName: "Apache Shardingsphere Operator Charts", + displayhostname: "", + hostID: "00000000-0000-0000-0000-000000000000", + hostname: "", + metadata: { + isAnnotation: false, + source_uri: + "https://github.com/apache/shardingsphere-on-cloud/releases/download/0.3.0/apache-shardingsphere-operator-charts-0.3.0.tgz", + svgColor: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/chaos-color.svg", + svgWhite: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg", + }, + name: "apache-shardingsphere-operator-charts", + relationships: [], + version: "0.2.0", + }, + "meshmodel-metadata": { + capabilities: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "https://layer5.io/company/brand", + model: "apache-shardingsphere-operator-charts", + modelDisplayName: "Apache Shardingsphere Operator Charts", + primaryColor: "#F26F23", + published: true, + secondaryColor: "#00D3A9", + shape: "circle", + styleOverrides: "", + subCategory: "Database", + svgColor: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/color/computenode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/apache-shardingsphere-operator-charts/white/chaos-white.svg", + }, + position: { + posX: 1138.492574427335, + posY: 304.9927660904751, + }, + whiteboardData: { style: { "z-index": 30 } }, + }, + }, + type: "ComputeNode", + }, + }, + }, + inventoryLength: 0, + shape: "circle", + color: "rgb(242,111,35)", + }, + position: { x: 1138.492574427335, y: 304.9927660904751 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "", + }, + ], + }, + elementStyles: { + "95837169-7585-44f3-acb1-718b529fdc7c": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "31", + zIndex: "31", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "50px", + textMaxWidth: "50px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "chaos-ae", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(242,111,35)", + backgroundColor: "rgb(242,111,35)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,133,42)", + borderColor: "rgb(255,133,42)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "background-image": + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "cover", + backgroundFit: "cover", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "chaos-ae", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px", + }, + "8082e593-8549-44a4-bc66-54d0bf81bde6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "29", + zIndex: "29", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "50px", + textMaxWidth: "50px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "compute-node-an", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(242,111,35)", + backgroundColor: "rgb(242,111,35)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,133,42)", + borderColor: "rgb(255,133,42)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "background-image": + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "cover", + backgroundFit: "cover", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "compute-node-an", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px", + }, + "4dd7b384-2e02-4c50-ad8b-3cd296262790": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "30", + zIndex: "30", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "50px", + textMaxWidth: "50px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "compute-node-wo", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(242,111,35)", + backgroundColor: "rgb(242,111,35)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,133,42)", + borderColor: "rgb(255,133,42)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "background-image": + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJzaGFyZGluZ3NwaGVyZV8xIiB4bWxuczpfeG1sbnM9InhtbG5zIiBfeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTExLjQgNTA4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTEuNCA1MDg7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPgo8c3R5bGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB0eXBlPSJ0ZXh0L2NzcyI+CiYjeDk7LnN0MHtmaWxsOiNGRkZGRkY7fQomI3g5Oy5zdDF7b3BhY2l0eTowLjc7ZmlsbDojRkZGRkZGO30KJiN4OTsuc3Qye29wYWNpdHk6MC44O2ZpbGw6I0ZGRkZGRjt9CiYjeDk7LnN0M3tvcGFjaXR5OjAuOTtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDcuNiwzMTIuM2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN0M0MDguMywzMDkuMiw0MDgsMzEwLjgsNDA3LjYsMzEyLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwOS43LDMwMy4zYzAuNy0zLjIsMS4zLTYuNCwxLjktOS42QzQxMSwyOTcsNDEwLjQsMzAwLjIsNDA5LjcsMzAzLjN6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MCIgZD0iTTQwNS40LDMyMC40YzAuMi0wLjYsMC40LTEuMywwLjUtMS45TDQwNS40LDMyMC40eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xOTUuMiwxNTIuNmM1LjQsMi45LDExLDUuNCwxNi44LDcuNUMyMDYuNSwxNTcuMywyMDAuOSwxNTQuOCwxOTUuMiwxNTIuNnoiPjwvcGF0aD4KPHBhdGggeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0ic3QxIiBkPSJNMjY2LjQsNzMuMWMwLDAsMTU4LjIsNDguMywxNDUuMywyMjAuNmMtMC42LDMuMy0xLjIsNi41LTEuOSw5LjZjLTAuMywxLjQtMC43LDIuOS0xLDQuMyYjeEE7JiN4OTtjLTAuNCwxLjYtMC43LDMuMi0xLjEsNC43Yy0wLjUsMi4xLTEuMSw0LjEtMS42LDYuMWMtMC4yLDAuNi0wLjMsMS4zLTAuNSwxLjljLTI3LjIsOTUuNi05OC41LDE0Mi4yLTE1NS43LDE2MS41JiN4QTsmI3g5O2MtMTkuNiw2LjYtMzkuOSwxMC40LTYwLjUsMTEuNWMtNi41LDAuNC0xMywwLjMtMTkuNC0wLjFjMjguNCwxMC4xLDU4LjQsMTUuMSw4OC42LDE0LjdjMTQxLjItMS40LDI1NC41LTExNi4xLDI1My4xLTI1Ni4yJiN4QTsmI3g5O2MtMC40LTQzLjMtMTItODUuNy0zMy42LTEyMy4yYzEuNiw3LDMuMSwxNC4xLDQuNSwyMS42YzI0LjYsMTI1LjctNTIuMSwxOTAuOS01Mi4xLDE5MC45czUwLjEtNTMuNywxMC0xOTcuNyYjeEE7JiN4OTtjLTIxLjgtNzguMi01OC40LTEwOC4yLTYwLjgtMTEwLjlDMzQ0LjgsMy43LDMxNy4zLTUuMiwyODguMSwyLjhDMjA3LjYsNDQuMywyNjYuNCw3My4xLDI2Ni40LDczLjF6Ij48L3BhdGg+CjxwYXRoIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9InN0MiIgZD0iTTE2OS43LDQ5My4zYzAuOSwwLDE4Ny41LDE0LjcsMjM1LjctMTcyLjljMC4yLTAuNiwwLjQtMS4zLDAuNS0xLjljMC42LTIsMS4xLTQuMSwxLjYtNi4xJiN4QTsmI3g5O2MwLjQtMS41LDAuOC0zLjEsMS4xLTQuN2MwLjMtMS40LDAuNy0yLjgsMS00LjNjMC43LTMuMiwxLjMtNi40LDEuOS05LjZDNDI0LjYsMTIxLjQsMjY2LjQsNzMuMSwyNjYuNCw3My4xcy01OC44LTI4LjgsMjEuNy03MC4yJiN4QTsmI3g5O2MtMzcsMTAtNjIuMSwyOS4yLTYxLjksNTFjMC4xLDE1LjEsMTIuNCwyOC42LDMyLjMsMzguNmM1LjgsMi4xLDExLjUsNC41LDE3LjEsNy4xYzI0LjYsMTEuMiw0Ni43LDI3LjEsNjUuMSw0Ni45JiN4QTsmI3g5O2MyNy45LDMwLjIsNDQuNyw2OC4zLDQ1LjIsMTA5LjljMSw5OS43LTkyLjYsMTgxLjQtMjA5LjEsMTgyLjZjLTQ3LjksMC41LTkyLjItMTIuNy0xMjcuOS0zNS40Qzc5LjIsNDQ0LjksMTIxLjQsNDc2LjEsMTY5LjcsNDkzLjMmI3hBOyYjeDk7eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDUuOSwzMTguNWMwLjYtMiwxLjEtNC4xLDEuNi02LjFDNDA3LDMxNC40LDQwNi41LDMxNi40LDQwNS45LDMxOC41eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik00MDguNywzMDcuNmMwLjMtMS40LDAuNy0yLjgsMS00LjNDNDA5LjQsMzA0LjgsNDA5LDMwNi4yLDQwOC43LDMwNy42eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xMzMuNiwyMDQuMSI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDMiIGQ9Ik0yMTEuOSwxNjAuMWMtNS44LTIuMS0xMS40LTQuNi0xNi44LTcuNWMtMjguNS0xNS40LTQ3LjEtNDAuNC00Ny40LTY4LjhjMC0xLjQsMC0yLjksMC4xLTQuMyYjeEE7JiN4OTtjMS45LTMzLjcsMjkuOC02Mi43LDY5LjEtNzUuN0MxMTguNCwxOC42LDM4LjUsODkuMiwxMC43LDE4MS44YzEyLjEtNS4xLDI1LjEtNy43LDM4LjItNy43YzUzLjgsMCw5Ny41LDQzLjMsOTcuNSw5Ni43JiN4QTsmI3g5O3MtNDMuNiw5Ni43LTk3LjUsOTYuN2MtNy45LDAtMTUuNy0xLTIzLjQtMi44YzEuMiwyLjQsMi40LDQuOCwzLjcsNy4yYzMsNS43LDYuMiwxMS4yLDkuNSwxNi42YzE1LjQsMjEuOSw1Ni40LDIzLjgsODkuMiwyMy45JiN4QTsmI3g5O2M5Mi4yLDAuNCwxNjEuNi02NC44LDE2MC45LTEzOS4yQzI4OC4zLDIyNS4zLDI1Ny42LDE4My41LDIxMS45LDE2MC4xeiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJzdDAiIGQ9Ik0xNDYuMywyNzAuOGMwLTUzLjQtNDMuNi05Ni43LTk3LjUtOTYuN2MtMTMuMSwwLTI2LjEsMi42LTM4LjIsNy43Yy0yLjIsNy4zLTQuMSwxNC43LTUuNiwyMi4zJiN4QTsmI3g5O2MtMTEsNTQuMy0zLjgsMTEwLjcsMjAuNCwxNjAuNWM3LjcsMS45LDE1LjUsMi44LDIzLjQsMi44QzEwMi43LDM2Ny41LDE0Ni4zLDMyNC4yLDE0Ni4zLDI3MC44eiI+PC9wYXRoPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "cover", + backgroundFit: "cover", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "compute-node-wo", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px", + }, + }, +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644 .embed-canvas-container { + height: 100%; + width: 100%; + } + + + #embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644 { + /* Dark theme */ + --dark-background: #1A1A1A;; + --dark-foregeound: #fff; + /* Light theme */ + --light-background: #fff; + --light-foregeound: #1A1A1A;; + /* Defaults */ + --current-background: var(--light-background); + --current-foreground: var(--light-foregeound); + background: var(--current-background); + } + #embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : var(--current-foreground) !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : var(--current-foreground); + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + @media (prefers-color-scheme: dark) { + #embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644 { + --current-background: var(--dark-background); + --current-foreground: var(--dark-foregeound); + } + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + Powered By + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + console.log("DOMContentLoaded"); + const embedContainer = document.getElementById( + "embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-a3d3f26e-4366-44e6-b211-1ba4e1a3e644-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset", + }, + elements: data.elements, + style: data.style, + })); + + Object.keys(data.elementStyles).forEach((id) => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/src/assets/images/learning-path/embed-test/embedded-design-gcp-edge-relationship.js b/src/assets/images/learning-path/embed-test/embedded-design-gcp-edge-relationship.js new file mode 100644 index 000000000000..d99ae9ce9bcd --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-gcp-edge-relationship.js @@ -0,0 +1,11363 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "frontend", + services: { + "0e6386a1-879e-4515-aa50-cbbafdbfbda0": { + namespace: "default", + settings: { + spec: { + ports: [{ name: "http", port: 80, "target Port": 8080 }], + selector: { app: "frontend" }, + type: "ClusterIP" + }, + name: "frontend", + namespace: "default", + labels: { app: "frontend" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "13ad5901-4b3c-4721-b350-e63d71e0b7ea", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "e4b17f59-dd58-464a-8b4c-e9a4d5b23220", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "a791021f-ff7b-49c7-b6c0-1939f7214cbf", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 31 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 182.90118539173923, posY: 656.464770911417 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 182.90118539173923, y: 656.464770911417 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "frontend", + services: { + "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a": { + namespace: "default", + settings: { + spec: { + selector: { "match Labels": { app: "frontend" } }, + template: { + metadata: { + annotations: { + "sidecar.istio.io/rewrite App HTTP Probers": "true" + }, + labels: { app: "frontend" } + }, + spec: { + containers: [ + { + env: [ + { name: "PORT", value: "8080" }, + { + name: "PRODUCT_CATALOG_SERVICE_ADDR", + value: "productcatalogservice:3550" + }, + { + name: "CURRENCY_SERVICE_ADDR", + value: "currencyservice:7000" + }, + { name: "CART_SERVICE_ADDR", value: "cartservice:7070" }, + { + name: "RECOMMENDATION_SERVICE_ADDR", + value: "recommendationservice:8080" + }, + { + name: "SHIPPING_SERVICE_ADDR", + value: "shippingservice:50051" + }, + { + name: "CHECKOUT_SERVICE_ADDR", + value: "checkoutservice:5050" + }, + { name: "AD_SERVICE_ADDR", value: "adservice:9555" }, + { + name: "SHOPPING_ASSISTANT_SERVICE_ADDR", + value: "shoppingassistantservice:80" + }, + { name: "ENABLE_PROFILER", value: "0" } + ], + image: + "gcr.io/google-samples/microservices-demo/frontend:v0.10.0", + "liveness Probe": { + "http Get": { + "http Headers": [ + { + name: "Cookie", + value: "shop_session-id=x-liveness-probe" + } + ], + path: "/_healthz", + port: 8080 + }, + "initial Delay Seconds": 10 + }, + name: "server", + ports: [{ "container Port": 8080 }], + "readiness Probe": { + "http Get": { + "http Headers": [ + { + name: "Cookie", + value: "shop_session-id=x-readiness-probe" + } + ], + path: "/_healthz", + port: 8080 + }, + "initial Delay Seconds": 10 + }, + resources: { + limits: { cpu: "200m", memory: "128Mi" }, + requests: { cpu: "100m", memory: "64Mi" } + }, + "security Context": { + "allow Privilege Escalation": false, + capabilities: { drop: ["ALL"] }, + privileged: false, + "read Only Root Filesystem": true + } + } + ], + "security Context": { + "fs Group": 1000, + "run As Group": 1000, + "run As Non Root": true, + "run As User": 1000 + }, + "service Account Name": "frontend" + } + } + }, + name: "frontend", + namespace: "default", + labels: { app: "frontend" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "13ad5901-4b3c-4721-b350-e63d71e0b7ea", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "69fedddd-97a4-4f5e-a965-c4acf10cfdce", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "7108c819-f529-4d12-bd15-194b9e3dc17a", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "0c4653ec-a6d0-4b2f-a205-a82898c4024a", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 12 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 449.40323658462137, posY: 394.9142581131965 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 449.40323658462137, y: 394.9142581131965 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ca155f07-aaaf-4109-8054-f87fe30d27b2", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "recommendationservice", + services: { + "ca155f07-aaaf-4109-8054-f87fe30d27b2": { + namespace: "default", + settings: { + spec: { + selector: { "match Labels": { app: "recommendationservice" } }, + template: { + metadata: { labels: { app: "recommendationservice" } }, + spec: { + containers: [ + { + env: [ + { name: "PORT", value: "8080" }, + { + name: "PRODUCT_CATALOG_SERVICE_ADDR", + value: "productcatalogservice:3550" + }, + { name: "DISABLE_PROFILER", value: "1" } + ], + image: + "gcr.io/google-samples/microservices-demo/recommendationservice:v0.10.0", + "liveness Probe": { + grpc: { port: 8080 }, + "period Seconds": 5 + }, + name: "server", + ports: [{ "container Port": 8080 }], + "readiness Probe": { + grpc: { port: 8080 }, + "period Seconds": 5 + }, + resources: { + limits: { cpu: "200m", memory: "450Mi" }, + requests: { cpu: "100m", memory: "220Mi" } + }, + "security Context": { + "allow Privilege Escalation": false, + capabilities: { drop: ["ALL"] }, + privileged: false, + "read Only Root Filesystem": true + } + } + ], + "security Context": { + "fs Group": 1000, + "run As Group": 1000, + "run As Non Root": true, + "run As User": 1000 + }, + "service Account Name": "recommendationservice", + "termination Grace Period Seconds": 5 + } + } + }, + name: "recommendationservice", + namespace: "default", + labels: { app: "recommendationservice" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "a791021f-ff7b-49c7-b6c0-1939f7214cbf", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "af0b1116-f6cf-4c9e-a593-13024db72a8b", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "1e1930fe-39b2-445c-b44a-708a8bcbb46b", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "49665763-5f76-487a-b3c1-d759027cfb1d", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ca155f07-aaaf-4109-8054-f87fe30d27b2", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 10 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 288.1481420147422, posY: 415.4915090502014 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 288.1481420147422, y: 415.4915090502014 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "recommendationservice", + services: { + "11d4f518-60c8-42eb-b3d4-53590ac9d053": { + namespace: "default", + settings: { + spec: { + ports: [{ name: "grpc", port: 8080, "target Port": 8080 }], + selector: { app: "recommendationservice" }, + type: "ClusterIP" + }, + name: "recommendationservice", + namespace: "default", + labels: { app: "recommendationservice" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0c4653ec-a6d0-4b2f-a205-a82898c4024a", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "e8d4b130-0b06-424e-be02-3e30070d7238", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "af0b1116-f6cf-4c9e-a593-13024db72a8b", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 425.81935268307564, posY: 660.7516981899597 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 425.81935268307564, y: 660.7516981899597 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ecfa1fe8-db99-44a8-acfa-61478c3904e4", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "emailservice", + services: { + "ecfa1fe8-db99-44a8-acfa-61478c3904e4": { + namespace: "default", + settings: { + spec: { + selector: { "match Labels": { app: "emailservice" } }, + template: { + metadata: { labels: { app: "emailservice" } }, + spec: { + containers: [ + { + env: [ + { name: "PORT", value: "8080" }, + { name: "DISABLE_PROFILER", value: "1" } + ], + image: + "gcr.io/google-samples/microservices-demo/emailservice:v0.10.0", + "liveness Probe": { + grpc: { port: 8080 }, + "period Seconds": 5 + }, + name: "server", + ports: [{ "container Port": 8080 }], + "readiness Probe": { + grpc: { port: 8080 }, + "period Seconds": 5 + }, + resources: { + limits: { cpu: "200m", memory: "128Mi" }, + requests: { cpu: "100m", memory: "64Mi" } + }, + "security Context": { + "allow Privilege Escalation": false, + capabilities: { drop: ["ALL"] }, + privileged: false, + "read Only Root Filesystem": true + } + } + ], + "security Context": { + "fs Group": 1000, + "run As Group": 1000, + "run As Non Root": true, + "run As User": 1000 + }, + "service Account Name": "emailservice", + "termination Grace Period Seconds": 5 + } + } + }, + name: "emailservice", + namespace: "default", + labels: { app: "emailservice" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "e4b17f59-dd58-464a-8b4c-e9a4d5b23220", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "e8d4b130-0b06-424e-be02-3e30070d7238", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "f0bf41b9-e3dd-4297-b6da-e91e25ad028c", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "eb391047-bd12-40f9-9720-083b5a228ad7", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ecfa1fe8-db99-44a8-acfa-61478c3904e4", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 5 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 622.0708576654108, posY: 401.77334175886483 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 622.0708576654108, y: 401.77334175886483 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8675d250-303e-40a3-827b-1c607bb938e8", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "emailservice", + services: { + "8675d250-303e-40a3-827b-1c607bb938e8": { + namespace: "default", + settings: { + spec: { + ports: [{ name: "grpc", port: 5000, "target Port": 8080 }], + selector: { app: "emailservice" }, + type: "ClusterIP" + }, + name: "emailservice", + namespace: "default", + labels: { app: "emailservice" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "69fedddd-97a4-4f5e-a965-c4acf10cfdce", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "f0bf41b9-e3dd-4297-b6da-e91e25ad028c", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "1e1930fe-39b2-445c-b44a-708a8bcbb46b", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "8675d250-303e-40a3-827b-1c607bb938e8", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 23 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 784.7626398208856, posY: 653.035229088583 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 784.7626398208856, y: 653.035229088583 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "frontend-external", + services: { + "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66": { + namespace: "default", + settings: { + spec: { + ports: [{ name: "http", port: 80, "target Port": 8080 }], + selector: { app: "frontend" }, + type: "LoadBalancer" + }, + name: "frontend-external", + namespace: "default", + labels: { app: "frontend" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "7108c819-f529-4d12-bd15-194b9e3dc17a", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "eb391047-bd12-40f9-9720-083b5a228ad7", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "49665763-5f76-487a-b3c1-d759027cfb1d", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 6 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 612.150079897649, posY: 655.6073854557085 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 612.150079897649, y: 655.6073854557085 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f55cbf76-10b6-464f-8123-1c4c3c252ac0", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "server", + services: { + "f55cbf76-10b6-464f-8123-1c4c3c252ac0": { + settings: { name: "server" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "f55cbf76-10b6-464f-8123-1c4c3c252ac0", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 37 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "ecfa1fe8-db99-44a8-acfa-61478c3904e4", + position: { posX: 622.0708576654108, posY: 392.77334175886483 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + position: { x: 622.0708576654108, y: 392.77334175886483 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "9be212fe-8fc7-42f9-b143-c758b1141931", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "server", + services: { + "9be212fe-8fc7-42f9-b143-c758b1141931": { + settings: { name: "server" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "9be212fe-8fc7-42f9-b143-c758b1141931", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 41 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a", + position: { posX: 449.40323658462137, posY: 385.9142581131965 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + position: { x: 449.40323658462137, y: 385.9142581131965 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "08944c10-9985-484f-af99-433ea26b5648", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "server", + services: { + "08944c10-9985-484f-af99-433ea26b5648": { + settings: { name: "server" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "08944c10-9985-484f-af99-433ea26b5648", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 39 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "ca155f07-aaaf-4109-8054-f87fe30d27b2", + position: { posX: 288.1481420147422, posY: 406.4915090502014 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + position: { x: 288.1481420147422, y: 406.4915090502014 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "13ad5901-4b3c-4721-b350-e63d71e0b7ea", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "e4b17f59-dd58-464a-8b4c-e9a4d5b23220", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "a791021f-ff7b-49c7-b6c0-1939f7214cbf", + metadata: { port: 80, protocol: "TCP" }, + source: "0e6386a1-879e-4515-aa50-cbbafdbfbda0", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "69fedddd-97a4-4f5e-a965-c4acf10cfdce", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "7108c819-f529-4d12-bd15-194b9e3dc17a", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "0c4653ec-a6d0-4b2f-a205-a82898c4024a", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "af0b1116-f6cf-4c9e-a593-13024db72a8b", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "1e1930fe-39b2-445c-b44a-708a8bcbb46b", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "49665763-5f76-487a-b3c1-d759027cfb1d", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "ca155f07-aaaf-4109-8054-f87fe30d27b2" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "e8d4b130-0b06-424e-be02-3e30070d7238", + metadata: { port: 8080, protocol: "TCP" }, + source: "11d4f518-60c8-42eb-b3d4-53590ac9d053", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "f0bf41b9-e3dd-4297-b6da-e91e25ad028c", + metadata: { port: 5000, protocol: "TCP" }, + source: "8675d250-303e-40a3-827b-1c607bb938e8", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "eb391047-bd12-40f9-9720-083b5a228ad7", + metadata: { port: 80, protocol: "TCP" }, + source: "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66", + subType: "Network", + target: "ecfa1fe8-db99-44a8-acfa-61478c3904e4" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "0e6386a1-879e-4515-aa50-cbbafdbfbda0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "31", + zIndex: "31", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "frontend", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "frontend", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "c29c2cb0-ea8f-4cdb-b5b9-3a56a1190d2a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "12", + zIndex: "12", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "frontend", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "frontend", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ca155f07-aaaf-4109-8054-f87fe30d27b2": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "10", + zIndex: "10", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "recommendationservice", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "recommendationservice", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "11d4f518-60c8-42eb-b3d4-53590ac9d053": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "recommendationservice", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "recommendationservice", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "ecfa1fe8-db99-44a8-acfa-61478c3904e4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "emailservice", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "emailservice", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8675d250-303e-40a3-827b-1c607bb938e8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "23", + zIndex: "23", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "emailservice", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "emailservice", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "29f9e730-d9bd-4b16-8c75-26b2a7d4aa66": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "6", + zIndex: "6", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "frontend-external", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "frontend-external", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "f55cbf76-10b6-464f-8123-1c4c3c252ac0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "37", + zIndex: "37", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "9be212fe-8fc7-42f9-b143-c758b1141931": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "41", + zIndex: "41", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "08944c10-9985-484f-af99-433ea26b5648": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "39", + zIndex: "39", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "13ad5901-4b3c-4721-b350-e63d71e0b7ea": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "e4b17f59-dd58-464a-8b4c-e9a4d5b23220": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "a791021f-ff7b-49c7-b6c0-1939f7214cbf": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "69fedddd-97a4-4f5e-a965-c4acf10cfdce": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "5000/TCP", + targetLabel: "5000/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "7108c819-f529-4d12-bd15-194b9e3dc17a": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "0c4653ec-a6d0-4b2f-a205-a82898c4024a": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "8080/TCP", + targetLabel: "8080/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "af0b1116-f6cf-4c9e-a593-13024db72a8b": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "8080/TCP", + targetLabel: "8080/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1e1930fe-39b2-445c-b44a-708a8bcbb46b": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "5000/TCP", + targetLabel: "5000/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "49665763-5f76-487a-b3c1-d759027cfb1d": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "e8d4b130-0b06-424e-be02-3e30070d7238": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "8080/TCP", + targetLabel: "8080/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "f0bf41b9-e3dd-4297-b6da-e91e25ad028c": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "5000/TCP", + targetLabel: "5000/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "eb391047-bd12-40f9-9720-083b5a228ad7": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-6dba7bde-82d7-4a75-9fde-39329a0c0e34-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/src/assets/images/learning-path/embed-test/embedded-design-parent-relationship.js b/src/assets/images/learning-path/embed-test/embedded-design-parent-relationship.js new file mode 100644 index 000000000000..8bd4b815ec4c --- /dev/null +++ b/src/assets/images/learning-path/embed-test/embedded-design-parent-relationship.js @@ -0,0 +1,4164 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "8cef58f7-c05c-44f3-9a00-e67ff91d86ad": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sidecar-injector" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "injector", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--healthz-port", + "8080" + ], + command: ["/injector"], + env: [ + { + name: "DAPR_TRUST_ANCHORS_FILE", + value: "/var/run/secrets/dapr.io/tls/ca.crt" + }, + { + name: "DAPR_CONTROL_PLANE_TRUST_DOMAIN", + value: "cluster.local" + }, + { + name: "DAPR_SENTRY_ADDRESS", + value: "dapr-sentry.default.svc.cluster.local:443" + }, + { name: "KUBE_CLUSTER_DOMAIN", value: "cluster.local" }, + { + name: "SIDECAR_IMAGE", + value: "ghcr.io/dapr/daprd:1.14.0-rc.3" + }, + { + name: "SIDECAR_IMAGE_PULL_POLICY", + value: "IfNotPresent" + }, + { name: "SIDECAR_RUN_AS_NON_ROOT", value: "true" }, + { name: "ENABLE_K8S_DOWNWARD_APIS", value: "false" }, + { name: "SIDECAR_DROP_ALL_CAPABILITIES", value: "false" }, + { + name: "SIDECAR_READ_ONLY_ROOT_FILESYSTEM", + value: "true" + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "IGNORE_ENTRYPOINT_TOLERATIONS", + value: + '[{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"alibabacloud.com/eci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"azure.com/aci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"aws\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"huawei.com/cci\\"}]' + }, + { name: "ACTORS_ENABLED", value: "true" }, + { name: "ACTORS_SERVICE_NAME", value: "placement" }, + { + name: "ACTORS_SERVICE_ADDRESS", + value: "dapr-placement-server:50005" + } + ], + "env From": [], + image: "ghcr.io/dapr/injector:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sidecar-injector", + ports: [ + { "container Port": 4000, name: "https", protocol: "TCP" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Devices": [], + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-injector", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 48 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 229.58728541938285, posY: -239.73583304362052 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 229.58728541938285, y: -239.73583304362052 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "45a1738a-ad8b-4564-b0fb-d15cdadfd522", + label: "Namespace", + type: "Namespace", + version: "v1.25.2", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-system", + services: { + "45a1738a-ad8b-4564-b0fb-d15cdadfd522": { + settings: { name: "dapr-system" }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "45a1738a-ad8b-4564-b0fb-d15cdadfd522", + label: "Namespace", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Kubernetes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "45d9a4de-8590-575e-9838-9fdb32058bdd", + metadata: { + isAnnotation: false, + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" + }, + model: { version: "v1.25.2" }, + name: "kubernetes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0.2, + "border-style": "dashed", + "border-width": 2, + height: "202.50673365832716px", + width: "318.39130753971034px", + "z-index": 43 + }, + styles: + '{"background-image":"none","border-width":2,"border-style":"dashed","background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/namespace-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/namespace-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/namespace-white.svg" + }, + position: { posX: 172.70485733437295, posY: -292.6766627944414 }, + whiteboardData: {} + } + }, + type: "Namespace" + } + } + } + }, + position: { x: 172.70485733437295, y: -292.6766627944414 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-operator" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "operator", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--watch-interval", + "0", + "--max-pod-restarts-per-minute", + "20", + "--log-level", + "info", + "--trust-anchors-file", + "/var/run/secrets/dapr.io/tls/ca.crt", + "--enable-metrics", + "--metrics-port", + "9090" + ], + command: ["/operator"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/operator:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-operator", + ports: [ + { "container Port": 6500 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + }, + { "mount Path": "/tmp", name: "dapr-operator-tmp" } + ] + } + ], + "service Account Name": "dapr-operator", + volumes: [ + { + "empty Dir": { medium: "Memory", "size Limit": "2Mi" }, + name: "dapr-operator-tmp" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-operator", + namespace: "default", + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 45 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 238.09053587780318, posY: -361.36216119931305 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 238.09053587780318, y: -361.36216119931305 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b39527a7-de38-4937-86bb-cffe545198a4", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "b39527a7-de38-4937-86bb-cffe545198a4": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sentry" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "sentry", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--trust-domain", + "cluster.local" + ], + command: ["/sentry"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/sentry:1.14.0-rc.3", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sentry", + ports: [ + { "container Port": 50001 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/credentials", + name: "credentials", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-sentry", + volumes: [ + { + name: "credentials", + secret: { "secret Name": "dapr-trust-bundle" } + } + ] + } + } + }, + name: "dapr-sentry", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.3" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b39527a7-de38-4937-86bb-cffe545198a4", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 1026 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 65.48367065313879, posY: -300.99414749233756 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 65.48367065313879, y: -300.99414749233756 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sentry", + services: { + "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc": { + settings: { name: "dapr-sentry" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 49 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "b39527a7-de38-4937-86bb-cffe545198a4", + position: { posX: 65.48367065313879, posY: -309.99414749233756 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "b39527a7-de38-4937-86bb-cffe545198a4" + }, + position: { x: 65.48367065313879, y: -309.99414749233756 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sidecar-injector", + services: { + "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8": { + settings: { name: "dapr-sidecar-injector" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1027 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad", + position: { posX: 229.58728541938285, posY: -248.73583304362052 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "8cef58f7-c05c-44f3-9a00-e67ff91d86ad" + }, + position: { x: 229.58728541938285, y: -248.73583304362052 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a62eec9c-c3c7-405a-9356-e84f7442945e", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-operator", + services: { + "a62eec9c-c3c7-405a-9356-e84f7442945e": { + settings: { name: "dapr-operator" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "a62eec9c-c3c7-405a-9356-e84f7442945e", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1005 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec", + position: { posX: 238.0905358778032, posY: -370.36216119931305 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec" + }, + position: { x: 238.0905358778032, y: -370.36216119931305 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ] + }, + elementStyles: { + "8cef58f7-c05c-44f3-9a00-e67ff91d86ad": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "48", + zIndex: "48", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "45a1738a-ad8b-4564-b0fb-d15cdadfd522": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "43", + zIndex: "43", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-system", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "202.50673365832716px", + width: "318.39130753971034px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-system", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f49cbd2f-6a98-4b8e-9435-a39f4a4c43ec": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "45", + zIndex: "45", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b39527a7-de38-4937-86bb-cffe545198a4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1026", + zIndex: "1026", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "3dd94e03-1fc7-4dd7-ab42-95293ff6d4bc": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "49", + zIndex: "49", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "cac7c9af-6e3a-41ae-baeb-eee6676c5fb8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1027", + zIndex: "1027", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a62eec9c-c3c7-405a-9356-e84f7442945e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1005", + zIndex: "1005", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-7838108c-c2da-48ef-bae6-134e759c7e60-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/src/assets/images/learning-path/interpreting-designs/annotation-arrow.svg b/src/assets/images/learning-path/interpreting-designs/annotation-arrow.svg new file mode 100644 index 000000000000..fc8bc3788299 --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/annotation-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/learning-path/interpreting-designs/annotations-examples.png b/src/assets/images/learning-path/interpreting-designs/annotations-examples.png new file mode 100644 index 000000000000..bddfc1fcad3f Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/annotations-examples.png differ diff --git a/src/assets/images/learning-path/interpreting-designs/basic-meshery-design.png b/src/assets/images/learning-path/interpreting-designs/basic-meshery-design.png new file mode 100644 index 000000000000..290ccbac3ce3 Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/basic-meshery-design.png differ diff --git a/src/assets/images/learning-path/interpreting-designs/create-annotation.gif b/src/assets/images/learning-path/interpreting-designs/create-annotation.gif new file mode 100644 index 000000000000..a4b9bc591992 Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/create-annotation.gif differ diff --git a/src/assets/images/learning-path/interpreting-designs/create-annotations.gif b/src/assets/images/learning-path/interpreting-designs/create-annotations.gif new file mode 100644 index 000000000000..5461676c5541 Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/create-annotations.gif differ diff --git a/src/assets/images/learning-path/interpreting-designs/customize-kubernetes.gif b/src/assets/images/learning-path/interpreting-designs/customize-kubernetes.gif new file mode 100644 index 000000000000..65d3ab294189 Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/customize-kubernetes.gif differ diff --git a/src/assets/images/learning-path/interpreting-designs/cylinders.svg b/src/assets/images/learning-path/interpreting-designs/cylinders.svg new file mode 100644 index 000000000000..ed0d8e69c7c9 --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/cylinders.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/dashed_arrow.svg b/src/assets/images/learning-path/interpreting-designs/dashed_arrow.svg new file mode 100644 index 000000000000..f79c248b396c --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/dashed_arrow.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/dotted-line.svg b/src/assets/images/learning-path/interpreting-designs/dotted-line.svg new file mode 100644 index 000000000000..7f69a090ac98 --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/dotted-line.svg @@ -0,0 +1,23 @@ + + + + Layer 1 + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/images/learning-path/interpreting-designs/edge-network-relationship.gif b/src/assets/images/learning-path/interpreting-designs/edge-network-relationship.gif new file mode 100644 index 000000000000..daf5ddcc8fda Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/edge-network-relationship.gif differ diff --git a/src/assets/images/learning-path/interpreting-designs/edge-permission.gif b/src/assets/images/learning-path/interpreting-designs/edge-permission.gif new file mode 100644 index 000000000000..99ad4d0b5957 Binary files /dev/null and b/src/assets/images/learning-path/interpreting-designs/edge-permission.gif differ diff --git a/src/assets/images/learning-path/interpreting-designs/edge_network.svg b/src/assets/images/learning-path/interpreting-designs/edge_network.svg new file mode 100644 index 000000000000..a42802bc321c --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/edge_network.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/edge_permission.svg b/src/assets/images/learning-path/interpreting-designs/edge_permission.svg new file mode 100644 index 000000000000..ead65920150b --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/edge_permission.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/integrations.svg b/src/assets/images/learning-path/interpreting-designs/integrations.svg new file mode 100644 index 000000000000..2e487fb2f3b5 --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/integrations.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/network_edge_relationship.svg b/src/assets/images/learning-path/interpreting-designs/network_edge_relationship.svg new file mode 100644 index 000000000000..a42802bc321c --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/network_edge_relationship.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/rectangles.svg b/src/assets/images/learning-path/interpreting-designs/rectangles.svg new file mode 100644 index 000000000000..74e6f5db9876 --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/rectangles.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/triangles.svg b/src/assets/images/learning-path/interpreting-designs/triangles.svg new file mode 100644 index 000000000000..c1eab68225a7 --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/triangles.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/interpreting-designs/users.svg b/src/assets/images/learning-path/interpreting-designs/users.svg new file mode 100644 index 000000000000..394b41a1c8bf --- /dev/null +++ b/src/assets/images/learning-path/interpreting-designs/users.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/assets/images/learning-path/istio/Grafana_-_Istio_Dashboard.webp b/src/assets/images/learning-path/istio/Grafana_-_Istio_Dashboard.webp new file mode 100644 index 000000000000..de65dcd77fbf Binary files /dev/null and b/src/assets/images/learning-path/istio/Grafana_-_Istio_Dashboard.webp differ diff --git a/src/assets/images/learning-path/istio/Grafana_Istio_Dashboard.webp b/src/assets/images/learning-path/istio/Grafana_Istio_Dashboard.webp new file mode 100644 index 000000000000..43e6a064295a Binary files /dev/null and b/src/assets/images/learning-path/istio/Grafana_Istio_Dashboard.webp differ diff --git a/src/assets/images/learning-path/istio/Loggly.webp b/src/assets/images/learning-path/istio/Loggly.webp new file mode 100644 index 000000000000..e073b4498b12 Binary files /dev/null and b/src/assets/images/learning-path/istio/Loggly.webp differ diff --git a/src/assets/images/learning-path/istio/Prometheus.webp b/src/assets/images/learning-path/istio/Prometheus.webp new file mode 100644 index 000000000000..0aaa2deff88e Binary files /dev/null and b/src/assets/images/learning-path/istio/Prometheus.webp differ diff --git a/src/assets/images/learning-path/istio/bookinfo-off-mesh.webp b/src/assets/images/learning-path/istio/bookinfo-off-mesh.webp new file mode 100644 index 000000000000..9ef0fe1a41c4 Binary files /dev/null and b/src/assets/images/learning-path/istio/bookinfo-off-mesh.webp differ diff --git a/src/assets/images/learning-path/istio/bookinfo-on-mesh.webp b/src/assets/images/learning-path/istio/bookinfo-on-mesh.webp new file mode 100644 index 000000000000..9658fab648d4 Binary files /dev/null and b/src/assets/images/learning-path/istio/bookinfo-on-mesh.webp differ diff --git a/src/assets/images/learning-path/istio/deploy-envoyfilter.webp b/src/assets/images/learning-path/istio/deploy-envoyfilter.webp new file mode 100644 index 000000000000..4de6eb5b9082 Binary files /dev/null and b/src/assets/images/learning-path/istio/deploy-envoyfilter.webp differ diff --git a/src/assets/images/learning-path/istio/install-imagehub.webp b/src/assets/images/learning-path/istio/install-imagehub.webp new file mode 100644 index 000000000000..b19200eae0d3 Binary files /dev/null and b/src/assets/images/learning-path/istio/install-imagehub.webp differ diff --git a/src/assets/images/learning-path/istio/install-istio.webp b/src/assets/images/learning-path/istio/install-istio.webp new file mode 100644 index 000000000000..159c0374db4f Binary files /dev/null and b/src/assets/images/learning-path/istio/install-istio.webp differ diff --git a/src/assets/images/learning-path/istio/install-istio1.webp b/src/assets/images/learning-path/istio/install-istio1.webp new file mode 100644 index 000000000000..5aac53591e7c Binary files /dev/null and b/src/assets/images/learning-path/istio/install-istio1.webp differ diff --git a/src/assets/images/learning-path/istio/install-istio2.webp b/src/assets/images/learning-path/istio/install-istio2.webp new file mode 100644 index 000000000000..24af769d104d Binary files /dev/null and b/src/assets/images/learning-path/istio/install-istio2.webp differ diff --git a/src/assets/images/learning-path/istio/ip.webp b/src/assets/images/learning-path/istio/ip.webp new file mode 100644 index 000000000000..3dbd6cf50d92 Binary files /dev/null and b/src/assets/images/learning-path/istio/ip.webp differ diff --git a/src/assets/images/learning-path/istio/istio-adapter.webp b/src/assets/images/learning-path/istio/istio-adapter.webp new file mode 100644 index 000000000000..34bd78e57960 Binary files /dev/null and b/src/assets/images/learning-path/istio/istio-adapter.webp differ diff --git a/src/assets/images/learning-path/istio/istio-addons.webp b/src/assets/images/learning-path/istio/istio-addons.webp new file mode 100644 index 000000000000..56ba83238178 Binary files /dev/null and b/src/assets/images/learning-path/istio/istio-addons.webp differ diff --git a/src/assets/images/learning-path/istio/jaeger.webp b/src/assets/images/learning-path/istio/jaeger.webp new file mode 100644 index 000000000000..b40ef0a1001a Binary files /dev/null and b/src/assets/images/learning-path/istio/jaeger.webp differ diff --git a/src/assets/images/learning-path/istio/jaeger_1.webp b/src/assets/images/learning-path/istio/jaeger_1.webp new file mode 100644 index 000000000000..8945c8fff2a7 Binary files /dev/null and b/src/assets/images/learning-path/istio/jaeger_1.webp differ diff --git a/src/assets/images/learning-path/istio/jaeger_2.webp b/src/assets/images/learning-path/istio/jaeger_2.webp new file mode 100644 index 000000000000..eef0282e88fe Binary files /dev/null and b/src/assets/images/learning-path/istio/jaeger_2.webp differ diff --git a/src/assets/images/learning-path/istio/jaeger_copy.webp b/src/assets/images/learning-path/istio/jaeger_copy.webp new file mode 100644 index 000000000000..235aff29b9e4 Binary files /dev/null and b/src/assets/images/learning-path/istio/jaeger_copy.webp differ diff --git a/src/assets/images/learning-path/istio/meshery-architecture.svg b/src/assets/images/learning-path/istio/meshery-architecture.svg new file mode 100644 index 000000000000..e87e9ee0c0aa --- /dev/null +++ b/src/assets/images/learning-path/istio/meshery-architecture.svg @@ -0,0 +1 @@ +Docker or KubernetesService Mesh \ No newline at end of file diff --git a/src/assets/images/learning-path/istio/meshery_cb_load_test.webp b/src/assets/images/learning-path/istio/meshery_cb_load_test.webp new file mode 100644 index 000000000000..74045cfc42a9 Binary files /dev/null and b/src/assets/images/learning-path/istio/meshery_cb_load_test.webp differ diff --git a/src/assets/images/learning-path/istio/meshery_initial_load_test.webp b/src/assets/images/learning-path/istio/meshery_initial_load_test.webp new file mode 100644 index 000000000000..201b97a62798 Binary files /dev/null and b/src/assets/images/learning-path/istio/meshery_initial_load_test.webp differ diff --git a/src/assets/images/learning-path/istio/servicegraph.webp b/src/assets/images/learning-path/istio/servicegraph.webp new file mode 100644 index 000000000000..1ed350c78927 Binary files /dev/null and b/src/assets/images/learning-path/istio/servicegraph.webp differ diff --git a/src/assets/images/learning-path/istio/zipkin.webp b/src/assets/images/learning-path/istio/zipkin.webp new file mode 100644 index 000000000000..5e8814f024d1 Binary files /dev/null and b/src/assets/images/learning-path/istio/zipkin.webp differ diff --git a/src/assets/images/learning-path/istio/zipkin_1.webp b/src/assets/images/learning-path/istio/zipkin_1.webp new file mode 100644 index 000000000000..955d410da0a0 Binary files /dev/null and b/src/assets/images/learning-path/istio/zipkin_1.webp differ diff --git a/src/assets/images/learning-path/istio/zipkin_2.webp b/src/assets/images/learning-path/istio/zipkin_2.webp new file mode 100644 index 000000000000..3c06e25be09e Binary files /dev/null and b/src/assets/images/learning-path/istio/zipkin_2.webp differ diff --git a/src/assets/images/learning-path/jaeger-icon-black.svg b/src/assets/images/learning-path/jaeger-icon-black.svg new file mode 100644 index 000000000000..130d3b9aeb6a --- /dev/null +++ b/src/assets/images/learning-path/jaeger-icon-black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/learning-path/jaeger-icon.svg b/src/assets/images/learning-path/jaeger-icon.svg new file mode 100644 index 000000000000..b1cca56c3bf4 --- /dev/null +++ b/src/assets/images/learning-path/jaeger-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/learning-path/kubernetes-icon.svg b/src/assets/images/learning-path/kubernetes-icon.svg new file mode 100644 index 000000000000..86e288be34d9 --- /dev/null +++ b/src/assets/images/learning-path/kubernetes-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/learning-path/kubernetes.svg b/src/assets/images/learning-path/kubernetes.svg new file mode 100644 index 000000000000..2e49b413b50c --- /dev/null +++ b/src/assets/images/learning-path/kubernetes.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/assets/images/learning-path/linkerd/control-plane-c.webp b/src/assets/images/learning-path/linkerd/control-plane-c.webp new file mode 100644 index 000000000000..12ef560b1480 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/control-plane-c.webp differ diff --git a/src/assets/images/learning-path/linkerd/emojivoto-tracing.webp b/src/assets/images/learning-path/linkerd/emojivoto-tracing.webp new file mode 100644 index 000000000000..aaf421f8ebe9 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/emojivoto-tracing.webp differ diff --git a/src/assets/images/learning-path/linkerd/install-linkerd.webp b/src/assets/images/learning-path/linkerd/install-linkerd.webp new file mode 100644 index 000000000000..1614936156db Binary files /dev/null and b/src/assets/images/learning-path/linkerd/install-linkerd.webp differ diff --git a/src/assets/images/learning-path/linkerd/linkerd-adapter.webp b/src/assets/images/learning-path/linkerd/linkerd-adapter.webp new file mode 100644 index 000000000000..8b9d2c34c508 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/linkerd-adapter.webp differ diff --git a/src/assets/images/learning-path/linkerd/linkerd-jaeger-ui.webp b/src/assets/images/learning-path/linkerd/linkerd-jaeger-ui.webp new file mode 100644 index 000000000000..7170a3170100 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/linkerd-jaeger-ui.webp differ diff --git a/src/assets/images/learning-path/linkerd/octopus.webp b/src/assets/images/learning-path/linkerd/octopus.webp new file mode 100644 index 000000000000..9d697a070c41 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/octopus.webp differ diff --git a/src/assets/images/learning-path/linkerd/tap.webp b/src/assets/images/learning-path/linkerd/tap.webp new file mode 100644 index 000000000000..0e7a09176026 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/tap.webp differ diff --git a/src/assets/images/learning-path/linkerd/top.webp b/src/assets/images/learning-path/linkerd/top.webp new file mode 100644 index 000000000000..66d66d679736 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/top.webp differ diff --git a/src/assets/images/learning-path/linkerd/webtap.webp b/src/assets/images/learning-path/linkerd/webtap.webp new file mode 100644 index 000000000000..ae6e0f3280f4 Binary files /dev/null and b/src/assets/images/learning-path/linkerd/webtap.webp differ diff --git a/src/assets/images/learning-path/linkerd/webtop.webp b/src/assets/images/learning-path/linkerd/webtop.webp new file mode 100644 index 000000000000..0d295986836e Binary files /dev/null and b/src/assets/images/learning-path/linkerd/webtop.webp differ diff --git a/src/assets/images/learning-path/meshery-configure/add-cluster.png b/src/assets/images/learning-path/meshery-configure/add-cluster.png new file mode 100644 index 000000000000..2ebfc75f801a Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/add-cluster.png differ diff --git a/src/assets/images/learning-path/meshery-configure/associate-with-workspace.png b/src/assets/images/learning-path/meshery-configure/associate-with-workspace.png new file mode 100644 index 000000000000..edd18e2622eb Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/associate-with-workspace.png differ diff --git a/src/assets/images/learning-path/meshery-configure/confirm-associated-workspace.png b/src/assets/images/learning-path/meshery-configure/confirm-associated-workspace.png new file mode 100644 index 000000000000..9e2284fb1484 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/confirm-associated-workspace.png differ diff --git a/src/assets/images/learning-path/meshery-configure/confirm-environment.png b/src/assets/images/learning-path/meshery-configure/confirm-environment.png new file mode 100644 index 000000000000..1622414f636b Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/confirm-environment.png differ diff --git a/src/assets/images/learning-path/meshery-configure/confirm-workspace.png b/src/assets/images/learning-path/meshery-configure/confirm-workspace.png new file mode 100644 index 000000000000..96d07be34841 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/confirm-workspace.png differ diff --git a/src/assets/images/learning-path/meshery-configure/connection-list.png b/src/assets/images/learning-path/meshery-configure/connection-list.png new file mode 100644 index 000000000000..7831633e5bdc Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/connection-list.png differ diff --git a/src/assets/images/learning-path/meshery-configure/create-environment.png b/src/assets/images/learning-path/meshery-configure/create-environment.png new file mode 100644 index 000000000000..1b84a4a7e4c7 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/create-environment.png differ diff --git a/src/assets/images/learning-path/meshery-configure/create-team.png b/src/assets/images/learning-path/meshery-configure/create-team.png new file mode 100644 index 000000000000..f4e5cfab875b Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/create-team.png differ diff --git a/src/assets/images/learning-path/meshery-configure/create-workspace.png b/src/assets/images/learning-path/meshery-configure/create-workspace.png new file mode 100644 index 000000000000..d4d55aad6743 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/create-workspace.png differ diff --git a/src/assets/images/learning-path/meshery-configure/env-arrow.png b/src/assets/images/learning-path/meshery-configure/env-arrow.png new file mode 100644 index 000000000000..cf0e6e802546 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/env-arrow.png differ diff --git a/src/assets/images/learning-path/meshery-configure/env-connect.png b/src/assets/images/learning-path/meshery-configure/env-connect.png new file mode 100644 index 000000000000..c1c1f1dd7c0f Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/env-connect.png differ diff --git a/src/assets/images/learning-path/meshery-configure/environments-designs.png b/src/assets/images/learning-path/meshery-configure/environments-designs.png new file mode 100644 index 000000000000..45e4c7b51a3f Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/environments-designs.png differ diff --git a/src/assets/images/learning-path/meshery-configure/invalid-kubeconfig.png b/src/assets/images/learning-path/meshery-configure/invalid-kubeconfig.png new file mode 100644 index 000000000000..9d0fbd735b9b Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/invalid-kubeconfig.png differ diff --git a/src/assets/images/learning-path/meshery-configure/lifecycle.png b/src/assets/images/learning-path/meshery-configure/lifecycle.png new file mode 100644 index 000000000000..7084bfa5de31 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/lifecycle.png differ diff --git a/src/assets/images/learning-path/meshery-configure/meshery-env.png b/src/assets/images/learning-path/meshery-configure/meshery-env.png new file mode 100644 index 000000000000..9b39496b9ee8 Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/meshery-env.png differ diff --git a/src/assets/images/learning-path/meshery-configure/upload-kubeconfig.png b/src/assets/images/learning-path/meshery-configure/upload-kubeconfig.png new file mode 100644 index 000000000000..b0e1778f0bfe Binary files /dev/null and b/src/assets/images/learning-path/meshery-configure/upload-kubeconfig.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/action.png b/src/assets/images/learning-path/meshery-deploy/action.png new file mode 100644 index 000000000000..7fe4fe12dd39 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/action.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/add-env.png b/src/assets/images/learning-path/meshery-deploy/add-env.png new file mode 100644 index 000000000000..c17a1b89b14e Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/add-env.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/assign-conn.png b/src/assets/images/learning-path/meshery-deploy/assign-conn.png new file mode 100644 index 000000000000..d6d80bc582d2 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/assign-conn.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/conn-list.png b/src/assets/images/learning-path/meshery-deploy/conn-list.png new file mode 100644 index 000000000000..667118003bc3 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/conn-list.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/create-env.png b/src/assets/images/learning-path/meshery-deploy/create-env.png new file mode 100644 index 000000000000..678a9a2c8be6 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/create-env.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/dr-invalid-field1.png b/src/assets/images/learning-path/meshery-deploy/dr-invalid-field1.png new file mode 100644 index 000000000000..07cf53b57d85 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/dr-invalid-field1.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/dr-invalid-field2.png b/src/assets/images/learning-path/meshery-deploy/dr-invalid-field2.png new file mode 100644 index 000000000000..8f75595f05d7 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/dr-invalid-field2.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/empty-ls.png b/src/assets/images/learning-path/meshery-deploy/empty-ls.png new file mode 100644 index 000000000000..0f764de1cbbe Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/empty-ls.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/env-conn.png b/src/assets/images/learning-path/meshery-deploy/env-conn.png new file mode 100644 index 000000000000..43c18e2dfad2 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/env-conn.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/env-error.png b/src/assets/images/learning-path/meshery-deploy/env-error.png new file mode 100644 index 000000000000..642162157ba7 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/env-error.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/error-code.png b/src/assets/images/learning-path/meshery-deploy/error-code.png new file mode 100644 index 000000000000..ae3e31078b88 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/error-code.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/kube-conn.png b/src/assets/images/learning-path/meshery-deploy/kube-conn.png new file mode 100644 index 000000000000..307fd56a8375 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/kube-conn.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/missing-con.png b/src/assets/images/learning-path/meshery-deploy/missing-con.png new file mode 100644 index 000000000000..8261a36e4469 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/missing-con.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/missing-field.png b/src/assets/images/learning-path/meshery-deploy/missing-field.png new file mode 100644 index 000000000000..af30a029e896 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/missing-field.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/missing-ns.png b/src/assets/images/learning-path/meshery-deploy/missing-ns.png new file mode 100644 index 000000000000..3b872b4aae83 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/missing-ns.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/missing-resource.png b/src/assets/images/learning-path/meshery-deploy/missing-resource.png new file mode 100644 index 000000000000..01bea2f48822 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/missing-resource.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/notification-center.png b/src/assets/images/learning-path/meshery-deploy/notification-center.png new file mode 100644 index 000000000000..8b0f757301ea Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/notification-center.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/notification.png b/src/assets/images/learning-path/meshery-deploy/notification.png new file mode 100644 index 000000000000..36242fafb213 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/notification.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/performing-validation.png b/src/assets/images/learning-path/meshery-deploy/performing-validation.png new file mode 100644 index 000000000000..5602b9f0b9d0 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/performing-validation.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/success-deploy.png b/src/assets/images/learning-path/meshery-deploy/success-deploy.png new file mode 100644 index 000000000000..a524b9d0f52c Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/success-deploy.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/successful-dry-run.png b/src/assets/images/learning-path/meshery-deploy/successful-dry-run.png new file mode 100644 index 000000000000..5ab53fe6926a Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/successful-dry-run.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/successful-validation.png b/src/assets/images/learning-path/meshery-deploy/successful-validation.png new file mode 100644 index 000000000000..8207a6b4d6b3 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/successful-validation.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/undeploy.png b/src/assets/images/learning-path/meshery-deploy/undeploy.png new file mode 100644 index 000000000000..680106332ba2 Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/undeploy.png differ diff --git a/src/assets/images/learning-path/meshery-deploy/validation-error.png b/src/assets/images/learning-path/meshery-deploy/validation-error.png new file mode 100644 index 000000000000..5f2029788d8b Binary files /dev/null and b/src/assets/images/learning-path/meshery-deploy/validation-error.png differ diff --git a/src/assets/images/learning-path/meshery-logo-light.webp b/src/assets/images/learning-path/meshery-logo-light.webp new file mode 100644 index 000000000000..c7601d970cfc Binary files /dev/null and b/src/assets/images/learning-path/meshery-logo-light.webp differ diff --git a/src/assets/images/learning-path/reviewing-designs/annotations.png b/src/assets/images/learning-path/reviewing-designs/annotations.png new file mode 100644 index 000000000000..2238fafac295 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/annotations.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/comment-history.png b/src/assets/images/learning-path/reviewing-designs/comment-history.png new file mode 100644 index 000000000000..5bef25b3dcee Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/comment-history.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/commenting-via-dock.png b/src/assets/images/learning-path/reviewing-designs/commenting-via-dock.png new file mode 100644 index 000000000000..d0ec11849552 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/commenting-via-dock.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/commenting-via-menu.png b/src/assets/images/learning-path/reviewing-designs/commenting-via-menu.png new file mode 100644 index 000000000000..c75caeb5c927 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/commenting-via-menu.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/comments-as-design-tool.png b/src/assets/images/learning-path/reviewing-designs/comments-as-design-tool.png new file mode 100644 index 000000000000..b22850e1be8b Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/comments-as-design-tool.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/comments.png b/src/assets/images/learning-path/reviewing-designs/comments.png new file mode 100644 index 000000000000..4478970f053e Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/comments.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/locking-comments.png b/src/assets/images/learning-path/reviewing-designs/locking-comments.png new file mode 100644 index 000000000000..9ce8ea8974b1 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/locking-comments.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/pinning-comments.png b/src/assets/images/learning-path/reviewing-designs/pinning-comments.png new file mode 100644 index 000000000000..f35d26b0965b Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/pinning-comments.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/reopening-comments.png b/src/assets/images/learning-path/reviewing-designs/reopening-comments.png new file mode 100644 index 000000000000..a3086f9cc777 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/reopening-comments.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/shape-annotation.png b/src/assets/images/learning-path/reviewing-designs/shape-annotation.png new file mode 100644 index 000000000000..e4d6ea8f005e Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/shape-annotation.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/text-annotation.png b/src/assets/images/learning-path/reviewing-designs/text-annotation.png new file mode 100644 index 000000000000..355d331beb8b Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/text-annotation.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/tooltip-annotation.png b/src/assets/images/learning-path/reviewing-designs/tooltip-annotation.png new file mode 100644 index 000000000000..b5507ebffaba Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/tooltip-annotation.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/whiteboard-access.png b/src/assets/images/learning-path/reviewing-designs/whiteboard-access.png new file mode 100644 index 000000000000..d44d041fda28 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/whiteboard-access.png differ diff --git a/src/assets/images/learning-path/reviewing-designs/whiteboarding.png b/src/assets/images/learning-path/reviewing-designs/whiteboarding.png new file mode 100644 index 000000000000..e2953bfde300 Binary files /dev/null and b/src/assets/images/learning-path/reviewing-designs/whiteboarding.png differ diff --git a/src/assets/images/learning-path/service-mesh.svg b/src/assets/images/learning-path/service-mesh.svg new file mode 100644 index 000000000000..743b193ffb6c --- /dev/null +++ b/src/assets/images/learning-path/service-mesh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/learning-path/sql/wp1.png b/src/assets/images/learning-path/sql/wp1.png new file mode 100644 index 000000000000..5c7e72a918ee Binary files /dev/null and b/src/assets/images/learning-path/sql/wp1.png differ diff --git a/src/assets/images/learning-path/sql/wp10.png b/src/assets/images/learning-path/sql/wp10.png new file mode 100644 index 000000000000..014e97097317 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp10.png differ diff --git a/src/assets/images/learning-path/sql/wp11.png b/src/assets/images/learning-path/sql/wp11.png new file mode 100644 index 000000000000..6f95af027976 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp11.png differ diff --git a/src/assets/images/learning-path/sql/wp12.png b/src/assets/images/learning-path/sql/wp12.png new file mode 100644 index 000000000000..818b604b9068 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp12.png differ diff --git a/src/assets/images/learning-path/sql/wp13.png b/src/assets/images/learning-path/sql/wp13.png new file mode 100644 index 000000000000..196f096374a5 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp13.png differ diff --git a/src/assets/images/learning-path/sql/wp14.png b/src/assets/images/learning-path/sql/wp14.png new file mode 100644 index 000000000000..e5e0b3aa025e Binary files /dev/null and b/src/assets/images/learning-path/sql/wp14.png differ diff --git a/src/assets/images/learning-path/sql/wp15.png b/src/assets/images/learning-path/sql/wp15.png new file mode 100644 index 000000000000..e7c84c1a03a3 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp15.png differ diff --git a/src/assets/images/learning-path/sql/wp16.png b/src/assets/images/learning-path/sql/wp16.png new file mode 100644 index 000000000000..ab52709370a4 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp16.png differ diff --git a/src/assets/images/learning-path/sql/wp17.png b/src/assets/images/learning-path/sql/wp17.png new file mode 100644 index 000000000000..d458e0b36892 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp17.png differ diff --git a/src/assets/images/learning-path/sql/wp18.png b/src/assets/images/learning-path/sql/wp18.png new file mode 100644 index 000000000000..884730bb76b9 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp18.png differ diff --git a/src/assets/images/learning-path/sql/wp19.png b/src/assets/images/learning-path/sql/wp19.png new file mode 100644 index 000000000000..b524a684535d Binary files /dev/null and b/src/assets/images/learning-path/sql/wp19.png differ diff --git a/src/assets/images/learning-path/sql/wp2.png b/src/assets/images/learning-path/sql/wp2.png new file mode 100644 index 000000000000..00b4d95f6761 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp2.png differ diff --git a/src/assets/images/learning-path/sql/wp20.png b/src/assets/images/learning-path/sql/wp20.png new file mode 100644 index 000000000000..b21b9f0d37fe Binary files /dev/null and b/src/assets/images/learning-path/sql/wp20.png differ diff --git a/src/assets/images/learning-path/sql/wp21.png b/src/assets/images/learning-path/sql/wp21.png new file mode 100644 index 000000000000..29baf884e56b Binary files /dev/null and b/src/assets/images/learning-path/sql/wp21.png differ diff --git a/src/assets/images/learning-path/sql/wp22.png b/src/assets/images/learning-path/sql/wp22.png new file mode 100644 index 000000000000..4fd801c215b5 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp22.png differ diff --git a/src/assets/images/learning-path/sql/wp23.png b/src/assets/images/learning-path/sql/wp23.png new file mode 100644 index 000000000000..3d5ab1c5cb80 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp23.png differ diff --git a/src/assets/images/learning-path/sql/wp3.png b/src/assets/images/learning-path/sql/wp3.png new file mode 100644 index 000000000000..fe5b1b2b7219 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp3.png differ diff --git a/src/assets/images/learning-path/sql/wp4.png b/src/assets/images/learning-path/sql/wp4.png new file mode 100644 index 000000000000..4cffd3454d62 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp4.png differ diff --git a/src/assets/images/learning-path/sql/wp5.png b/src/assets/images/learning-path/sql/wp5.png new file mode 100644 index 000000000000..ac848406970d Binary files /dev/null and b/src/assets/images/learning-path/sql/wp5.png differ diff --git a/src/assets/images/learning-path/sql/wp6.png b/src/assets/images/learning-path/sql/wp6.png new file mode 100644 index 000000000000..df785b83a91f Binary files /dev/null and b/src/assets/images/learning-path/sql/wp6.png differ diff --git a/src/assets/images/learning-path/sql/wp7.png b/src/assets/images/learning-path/sql/wp7.png new file mode 100644 index 000000000000..f2585d3764e4 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp7.png differ diff --git a/src/assets/images/learning-path/sql/wp8.png b/src/assets/images/learning-path/sql/wp8.png new file mode 100644 index 000000000000..9ccca20c25b0 Binary files /dev/null and b/src/assets/images/learning-path/sql/wp8.png differ diff --git a/src/assets/images/learning-path/sql/wp9.png b/src/assets/images/learning-path/sql/wp9.png new file mode 100644 index 000000000000..e9db7050624b Binary files /dev/null and b/src/assets/images/learning-path/sql/wp9.png differ diff --git a/src/sections/Learn-Layer5/Chapters/index.js b/src/sections/Learn-Layer5/Chapters/index.js index 636d8d5abe09..aacd4f5e650b 100644 --- a/src/sections/Learn-Layer5/Chapters/index.js +++ b/src/sections/Learn-Layer5/Chapters/index.js @@ -15,7 +15,7 @@ const Chapters = ({ chapterData, courseData, location, serviceMeshesList, TOCDat const { frontmatter, body } = chapterData; const [showQuizModal, setShowQuizModal] = useState(false); - const serviceMeshImages = courseData.frontmatter.meshesYouLearn; + const serviceMeshImages = courseData.frontmatter.meshesYouLearn || []; const tableOfContents = TOCData .filter(node => !!node.fields.section) .map( toc => ({ section: toc.fields.section, chapter: toc.fields.chapter }) ); @@ -52,18 +52,19 @@ const Chapters = ({ chapterData, courseData, location, serviceMeshesList, TOCDat const getAvailableServiceMeshes = () => { let serviceMeshes = []; + console.log("serviceMeshList", serviceMeshesList); serviceMeshesList.forEach(sm => { mapMeshWithFormattedSlug(sm, serviceMeshes); }); return serviceMeshes; }; + const availableServiceMeshesArray = getAvailableServiceMeshes(); const findServiceMeshImage = (images, serviceMesh) => images.find(image => image.name.toLowerCase() == serviceMesh); const capitalize = (s) => s.charAt(0).toUpperCase() + s.slice(1); const ServiceMeshesAvailable = ({ serviceMeshes }) => serviceMeshes.map((sm, index) => { - return ( <>
@@ -98,10 +99,14 @@ const Chapters = ({ chapterData, courseData, location, serviceMeshesList, TOCDat
-

Service Meshes Available

-
- -
+ { serviceMeshImages.length !== 0 && availableServiceMeshesArray.length != 0 && ( + <> +

Technologies Available

+
+ +
+ + )}
diff --git a/src/sections/Learn-Layer5/Course-Overview/index.js b/src/sections/Learn-Layer5/Course-Overview/index.js index 1e7b6c2e102f..f67024757323 100644 --- a/src/sections/Learn-Layer5/Course-Overview/index.js +++ b/src/sections/Learn-Layer5/Course-Overview/index.js @@ -15,10 +15,12 @@ import SubscribeLearnPath from "../../subscribe/SubscribeLearnPath"; import BookmarkNotification from "../../../components/Learn-Components/BookmarkNotification"; const CourseOverview = ({ course, chapters, serviceMeshesList }) => { + + const extractedSection = (chapters.length > 0 ? chapters[0].fields.section : ""); const [hasBookmark, setHasBookmark] = useState(false); const [bookmarkUrl, setBookmarkUrl] = useState(""); const [showNotification, setShowNotification] = useState(true); - const serviceMeshImages = course.frontmatter.meshesYouLearn; + const serviceMeshImages = course.frontmatter.meshesYouLearn || []; const getChapterTitle = (chapter, chapterList) => { for (let i = 0; i < chapterList.length; i++) { if (chapterList[i].fields.chapter === chapter) return chapterList[i]; @@ -33,7 +35,7 @@ const CourseOverview = ({ course, chapters, serviceMeshesList }) => { }); return serviceMeshes; }; - + const availableServiceMeshes = getAvailableServiceMeshes(); const findServiceMeshImage = (images, serviceMesh) => { return images.find((image) => image.name.toLowerCase() == serviceMesh); }; @@ -43,7 +45,7 @@ const CourseOverview = ({ course, chapters, serviceMeshesList }) => { return (
{sm} @@ -112,7 +114,7 @@ const CourseOverview = ({ course, chapters, serviceMeshesList }) => {

Table Of Contents

{course.frontmatter.toc.map((item, index) => ( - + {
-

Service Meshes You can Learn

- + {console.log("lenght of the service mesh array: ", availableServiceMeshes.length) } + { console.log("array: ",availableServiceMeshes)} + { serviceMeshImages.length !== 0 && availableServiceMeshes.length != 0 && ( + <> +

Technologies You Can Learn

+ + + )}
{/*

Contribute to Layer5

diff --git a/src/templates/course-overview.js b/src/templates/course-overview.js index 462e0eb9b609..68ffd5225c29 100644 --- a/src/templates/course-overview.js +++ b/src/templates/course-overview.js @@ -67,6 +67,7 @@ export const query = graphql` course learnpath chapter + section } } } diff --git a/static/embed-test/embedded-design-annotations-example.js b/static/embed-test/embedded-design-annotations-example.js new file mode 100644 index 000000000000..a6a2f6298949 --- /dev/null +++ b/static/embed-test/embedded-design-annotations-example.js @@ -0,0 +1,10593 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "bacefa6b-eddf-4864-ab09-7a282d69c622", + label: "Section", + type: "Section", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "bacefa6b-eddf-4864-ab09-7a282d69c622": { + settings: { label: "Team", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "552d4a20-700e-4ef2-946d-7a366c709182", + source: "bacefa6b-eddf-4864-ab09-7a282d69c622", + subType: "Annotation", + target: "3c37037b-355e-4f78-99d4-68213bb4d08e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(0,179,159)", + "line-style": "solid", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "5888a85b-e0b4-4b92-9190-e8dede9d4515", + source: "691fa8ed-cc2f-42b8-99c8-782221351d7b", + subType: "Annotation", + target: "bacefa6b-eddf-4864-ab09-7a282d69c622" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bacefa6b-eddf-4864-ab09-7a282d69c622", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(255,192,52)", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 14 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 313.649515486519, posY: 313.442621546915 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 313.649515486519, y: 313.442621546915 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "3c37037b-355e-4f78-99d4-68213bb4d08e", + label: "Section", + type: "Section", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "3c37037b-355e-4f78-99d4-68213bb4d08e": { + settings: { label: "Organization A", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "552d4a20-700e-4ef2-946d-7a366c709182", + source: "bacefa6b-eddf-4864-ab09-7a282d69c622", + subType: "Annotation", + target: "3c37037b-355e-4f78-99d4-68213bb4d08e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(0,179,159)", + "line-style": "solid", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "3c37037b-355e-4f78-99d4-68213bb4d08e", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(66,99,235)", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(66,99,235)", + "border-style": "dashed", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 12 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 365.53078475946626, posY: 275.21611463015813 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 365.53078475946626, y: 275.21611463015813 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + label: "Section", + type: "Section", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "55e02c1a-2160-4c76-ab40-0fc0df40810f": { + settings: { label: "Organization B", name: "Section" }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(66,99,235)", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(77,171,247)", + "border-style": "dashed", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 24 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 715.8205906330104, posY: 255.89040377116584 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 715.8205906330104, y: 255.89040377116584 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "76be5174-1afd-47f7-9618-ca5cc0a9364f", + label: "Section", + type: "Section", + version: "0.7.1", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "76be5174-1afd-47f7-9618-ca5cc0a9364f": { + settings: { label: "Team-1", name: "Section" }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "76be5174-1afd-47f7-9618-ca5cc0a9364f", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.1" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0.1, + "border-style": "dashed", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 28 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 768.6451434048167, posY: 329.47078033931666 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 768.6451434048167, y: 329.47078033931666 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6342e7b6-383c-4ee7-a4f6-d786b604366c", + label: "Circle", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Circle", + services: { + "6342e7b6-383c-4ee7-a4f6-d786b604366c": { + namespace: "Section", + settings: { + label: "Sam", + namesapce: "Section", + name: "Circle", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "787a12fb-62ab-429e-8af7-412b161426d9", + source: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7", + subType: "Annotation", + target: "6342e7b6-383c-4ee7-a4f6-d786b604366c" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(0,179,159)", + "line-style": "solid", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6342e7b6-383c-4ee7-a4f6-d786b604366c", + label: "Circle", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 18 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "3c37037b-355e-4f78-99d4-68213bb4d08e", + position: { posX: 412.8226952110318, posY: 195.5751111430326 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "3c37037b-355e-4f78-99d4-68213bb4d08e" + }, + position: { x: 412.8226952110318, y: 195.5751111430326 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "5432c51e-9b75-4bf2-9cce-1336bac84cc4", + label: "Rosa", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Rosa", + services: { + "5432c51e-9b75-4bf2-9cce-1336bac84cc4": { + namespace: "Section", + settings: { + label: "Rosa", + namesapce: "Section", + name: "Rosa", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "5432c51e-9b75-4bf2-9cce-1336bac84cc4", + label: "Rosa", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 32 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + position: { posX: 673.7759464201381, posY: 204.9781618202481 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f" + }, + position: { x: 673.7759464201381, y: 204.9781618202481 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "1333443f-d1a4-4a76-ad13-13d8f5d0e8df", + label: "Rosa", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Rosa", + services: { + "1333443f-d1a4-4a76-ad13-13d8f5d0e8df": { + namespace: "Section", + settings: { + label: "Rosa", + namesapce: "Section", + name: "Rosa", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "1333443f-d1a4-4a76-ad13-13d8f5d0e8df", + label: "Rosa", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 30 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + position: { posX: 673.7759464201381, posY: 204.9781618202481 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f" + }, + position: { x: 673.7759464201381, y: 204.9781618202481 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "57051c5e-26b9-48ce-a8f8-1133559876f2", + label: "Circle", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Circle", + services: { + "57051c5e-26b9-48ce-a8f8-1133559876f2": { + namespace: "Section", + settings: { + label: "Rosa", + namesapce: "Section", + name: "Circle", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "57051c5e-26b9-48ce-a8f8-1133559876f2", + label: "Circle", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 22 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "3c37037b-355e-4f78-99d4-68213bb4d08e", + position: { posX: 459.4481078086288, posY: 370.65105034507764 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "3c37037b-355e-4f78-99d4-68213bb4d08e" + }, + position: { x: 459.4481078086288, y: 370.65105034507764 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "691fa8ed-cc2f-42b8-99c8-782221351d7b", + label: "Circle", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Circle", + services: { + "691fa8ed-cc2f-42b8-99c8-782221351d7b": { + namespace: "Section", + settings: { + label: "Jack", + namesapce: "Section", + name: "Circle", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "5888a85b-e0b4-4b92-9190-e8dede9d4515", + source: "691fa8ed-cc2f-42b8-99c8-782221351d7b", + subType: "Annotation", + target: "bacefa6b-eddf-4864-ab09-7a282d69c622" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "691fa8ed-cc2f-42b8-99c8-782221351d7b", + label: "Circle", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 15 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "3c37037b-355e-4f78-99d4-68213bb4d08e", + position: { posX: 271.61346171030374, posY: 161.78117891523866 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "3c37037b-355e-4f78-99d4-68213bb4d08e" + }, + position: { x: 271.61346171030374, y: 161.78117891523866 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7", + label: "Circle", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Circle", + services: { + "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7": { + namespace: "Section", + settings: { + label: "Lee", + namesapce: "Section", + name: "Circle", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0200796a-65d9-48bb-98c4-5237dc41f6a7", + source: "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9", + subType: "Annotation", + target: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "787a12fb-62ab-429e-8af7-412b161426d9", + source: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7", + subType: "Annotation", + target: "6342e7b6-383c-4ee7-a4f6-d786b604366c" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(0,179,159)", + "line-style": "solid", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7", + label: "Circle", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 23 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "bacefa6b-eddf-4864-ab09-7a282d69c622", + position: { posX: 285.2831464642469, posY: 272.0492908310846 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "bacefa6b-eddf-4864-ab09-7a282d69c622" + }, + position: { x: 285.2831464642469, y: 272.0492908310846 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "69989702-ff44-4fb9-8e3f-d15c307ad947", + label: "Kevin", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Kevin", + services: { + "69989702-ff44-4fb9-8e3f-d15c307ad947": { + namespace: "Section", + settings: { + label: "Kevin", + namesapce: "Section", + name: "Kevin", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "69989702-ff44-4fb9-8e3f-d15c307ad947", + label: "Kevin", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 33 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "76be5174-1afd-47f7-9618-ca5cc0a9364f", + position: { posX: 749.451321144996, posY: 320.948099866591 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "76be5174-1afd-47f7-9618-ca5cc0a9364f" + }, + position: { x: 749.451321144996, y: 320.948099866591 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2939cbf9-4fd9-48bd-8c69-e8b1bbb00aba", + label: "Workspace", + type: "Barrel", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Workspace", + services: { + "2939cbf9-4fd9-48bd-8c69-e8b1bbb00aba": { + namespace: "Section", + settings: { + label: "Workspace", + namesapce: "Section", + name: "Workspace", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "2939cbf9-4fd9-48bd-8c69-e8b1bbb00aba", + label: "Workspace", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "barrel", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0.1, + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "304.2689485095541px", + width: "180.87368016932191px", + "z-index": 31 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/barrel-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/barrel-white.svg" + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + position: { posX: 715.8205906330104, posY: 247.14040377116584 }, + whiteboardData: {} + } + }, + type: "Barrel" + } + } + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f" + }, + position: { x: 715.8205906330104, y: 247.14040377116584 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9", + label: "Circle", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Circle", + services: { + "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9": { + namespace: "Section", + settings: { + label: "Holt", + namesapce: "Section", + name: "Circle", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0200796a-65d9-48bb-98c4-5237dc41f6a7", + source: "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9", + subType: "Annotation", + target: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9", + label: "Circle", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 19 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "bacefa6b-eddf-4864-ab09-7a282d69c622", + position: { posX: 342.01588450879115, posY: 336.8359522627455 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "bacefa6b-eddf-4864-ab09-7a282d69c622" + }, + position: { x: 342.01588450879115, y: 336.8359522627455 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c509f029-ffe2-4d92-b353-c42ada922c58", + label: "Kevin", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Kevin", + services: { + "c509f029-ffe2-4d92-b353-c42ada922c58": { + namespace: "Section", + settings: { + label: "Amy", + namesapce: "Section", + name: "Kevin", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "c509f029-ffe2-4d92-b353-c42ada922c58", + label: "Kevin", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 26 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "76be5174-1afd-47f7-9618-ca5cc0a9364f", + position: { posX: 787.8389656646374, posY: 319.9934608120423 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "76be5174-1afd-47f7-9618-ca5cc0a9364f" + }, + position: { x: 787.8389656646374, y: 319.9934608120423 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "79b2fba4-df36-4cff-8d7e-e61cde71434a", + label: "Rosa", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Rosa", + services: { + "79b2fba4-df36-4cff-8d7e-e61cde71434a": { + namespace: "Section", + settings: { + label: "Geena", + namesapce: "Section", + name: "Rosa", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "79b2fba4-df36-4cff-8d7e-e61cde71434a", + label: "Rosa", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 34 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + position: { posX: 738.7759464201381, posY: 139.9781618202481 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f" + }, + position: { x: 738.7759464201381, y: 139.9781618202481 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "091d4747-e5d3-401b-a8fb-c6cba6ee9c82", + label: "Rosa", + type: "Circle", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Rosa", + services: { + "091d4747-e5d3-401b-a8fb-c6cba6ee9c82": { + namespace: "Section", + settings: { + label: "Rosa", + namesapce: "Section", + name: "Rosa", + namespace: "Section" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "091d4747-e5d3-401b-a8fb-c6cba6ee9c82", + label: "Rosa", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "0499d935-67ae-5f79-a806-7865387c1488", + metadata: { + isAnnotation: true, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/meshery-shapes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "core.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"edit":{"config":false, "text":true,"lock":true,"shape":{"convert-shape":true},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": + "https://raw.githubusercontent.com/leecalcote/talks/1b704173ab69ba37b3f7a725b1c58eeb56b83a8d/img/five-avatar-circle.png", + "background-opacity": 0, + "border-style": "solid", + "border-width": "0px", + data: { label: "" }, + height: "30px", + textOverlay: { "font-size": "1" }, + width: "30px", + "z-index": 29 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"solid","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-shapes/color/circle-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-flowchart/white/onpagereference-white.svg" + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f", + position: { posX: 673.7759464201381, posY: 204.9781618202481 }, + whiteboardData: {} + } + }, + type: "Circle" + } + } + }, + parent: "55e02c1a-2160-4c76-ab40-0fc0df40810f" + }, + position: { x: 673.7759464201381, y: 204.9781618202481 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "787a12fb-62ab-429e-8af7-412b161426d9", + source: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7", + subType: "Annotation", + target: "6342e7b6-383c-4ee7-a4f6-d786b604366c" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "552d4a20-700e-4ef2-946d-7a366c709182", + source: "bacefa6b-eddf-4864-ab09-7a282d69c622", + subType: "Annotation", + target: "3c37037b-355e-4f78-99d4-68213bb4d08e" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "5888a85b-e0b4-4b92-9190-e8dede9d4515", + source: "691fa8ed-cc2f-42b8-99c8-782221351d7b", + subType: "Annotation", + target: "bacefa6b-eddf-4864-ab09-7a282d69c622" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "0200796a-65d9-48bb-98c4-5237dc41f6a7", + source: "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9", + subType: "Annotation", + target: "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "bacefa6b-eddf-4864-ab09-7a282d69c622": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "14", + zIndex: "14", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Team", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,192,52)", + borderColor: "rgb(255,192,52)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Team", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "3c37037b-355e-4f78-99d4-68213bb4d08e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "12", + zIndex: "12", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Organization A", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(66,99,235)", + backgroundColor: "rgb(66,99,235)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(66,99,235)", + borderColor: "rgb(66,99,235)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Organization A", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "55e02c1a-2160-4c76-ab40-0fc0df40810f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "24", + zIndex: "24", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Organization B", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(66,99,235)", + backgroundColor: "rgb(66,99,235)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(77,171,247)", + borderColor: "rgb(77,171,247)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Organization B", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "76be5174-1afd-47f7-9618-ca5cc0a9364f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "28", + zIndex: "28", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Team-1", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Team-1", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6342e7b6-383c-4ee7-a4f6-d786b604366c": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "18", + zIndex: "18", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Sam", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Sam", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "5432c51e-9b75-4bf2-9cce-1336bac84cc4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "32", + zIndex: "32", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Rosa", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Rosa", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "1333443f-d1a4-4a76-ad13-13d8f5d0e8df": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "30", + zIndex: "30", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Rosa", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Rosa", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "57051c5e-26b9-48ce-a8f8-1133559876f2": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "22", + zIndex: "22", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Rosa", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYgAAAGICAYAAABbQ3cmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAZkhJREFUeNrsXQd8FEXfniC+dgkqFiyEjkq1gwgBK2IBxAKIgr29ChbsAvZKUbFLszdAKaKIBhAbKgELigJBREWkKIKC+uW7Z7zJO9nMzO7e7d7tzv6f32+4kOQud7sz88zzrwWMQCCw8vLyYuf3CgoKSujKEJKMAroEhJhv7C1TD4Xp/8qbfHvHrxaH8OedBDJD8bO1KaIppTtFIIIgEMIjgGLHxl8cw49T4iCSEiIQAhEEgeBOBNjwi9KjvfR1UlCWHjPE12TiIhBBEJJGBFADLdMKoEX66yK6MkbigMKYl1YcpSniWEuXhUAEQbCBEAQZtCcyCJw0oDZKyERFIIIgxIUQiiVCKKYrkjOUSIRRQpeDQARBiJJCOJEIIXKE8SopDAIRBCGXhAAfQpe0QsBjIV2VyAM+iwlphTGBfBgEIghCkKRQlCYDUgl2qQuQRRldDgIRBMEvKbSUSKElXRFrUSqRBZmiCEQQBFelcBmjaKMkAmpiOCkLAhEEQZACfAh9UuNMUgoEh7IYkxqjyWdBBEFIHjF0SZNCF7oaBBfAwT0mRRQT6FIQQRDsJYUi9q/5CIqBoo8IfgElMTo1hpMJigiCYA8x9EmrhWK6GoSAUJJWFaPpUhBBEOJHClAI/dLEUERXhBASoCTgqxhGvgoiCEL0iQFkMJD9a0YiEHIJqInBZH4igiBEjxiK08RQTFeDkGeUpImihC4FEQQhv8QApQDHM4WoEqIGhMoOJz8FEQQhP8QAxVBEV4MQcZSlFQURBREEgYiBQCCiIIIgEDEQCEQURBCEvBEDMp2HEjEQLCWK/pShHV1Uo0sQWWIoTo13Ul+OJ3IgWArM6/GY5+koPAIpCIILMRSlFQPVSCIkDRPSiqKMLgUpCEJlYihMDRDDEiIHQkKBeb8E6yBdCYBACoKQWgwoiQEHNC0KAuFfoGwHHNnD6FIQQSSVGIrZv+YkSnIjENRAsl1/ysomgkgSMRSmiaEPXQ0CwRNGp4mCCgISQVhNDn3S5EDmJALBH9amSWI0XQoiCNuIoSj1MIpRMT0CIVuUpEZfinYKHxTFlBtyGJR6mEvkQCAEAqyjuel1RSAFEVtiaJlWDeSEJhDCQWlaTZTSpSAFEUfVQORAIISHlqQmSEHEiRiKGPkaCNnNIfeFW0BLV4ESRr4JUhARXtj9GPkaCD6IQDUyeS6BozitJvrRpSAFEaWFXphWDVQig5CxKshWPZCqqIQJaTVBeRNEEHld+Di1oOIq5TUQPG3yXkjA+Tumzd/5MyKKCpSlSaKELkVmIBNTdhvBoNTDO0QOySYDk7lH93PV9//v//6vYqh+pvs7ZGLSogjrkxzYpCByvSkUplVDMV0NUgh+vq8iEBm//fYb+/rrr/koKytjP//8M1u3bh37+++/WbVq1dh//vMfttVWW/GBrzHOPPNMVrdu3UrKgVREFUBFdCWTkz9Up0vge3NoSaqBCMH0Mx0hyF9j0//ss8/4+PzzzytI4ccff/T9/vbcc0929tln89cXxCB/TeDAYQ6lxDtQzgQRRFgbBaIjhtKVIJXghwx++eUX9sknn7CPP/6YzZ07l5MC1EFQpqEvv/xS+16JJCoBhzpEOfWnMuJEEEFuFlR9NaGkYPqeihD++usvTgKzZ8/mhICxZMmSwN9rrVq1WOvWrVmbNm3YMcccQ6TgD2hI1IJRdVhX0Exy3zSK2L/+BsqITigpqIhAPG7YsIG99957nBAwPvroI/69IAHfQ5MmTdghhxzCDj74YE4MjRs35kQgBl/MjsdKC90DaQSlaGJEUDA1daXEOiKITDcP8jcknBScj//88w9XBe+88w6bPn06++CDD9jGjRuDtYMUFrIDDjiAHXTQQZwQDjzwQP49mQBU5BBFJ3UMyAIKgvwSRBC+N5E+7N/kN0JCiEFHCogkeuONN9iUKVM4KaxdG5xVQqgDkAGIAI+yOnASgun/qg05CsohJoqiL/WZIILwupHA30Dp+gkmBTiSJ02axElhzpw5PA8hCNSoUYMTgVAGUArbb799pY3UqQRUJiSTaSmTDTkbkvBi0ooJSQxLvc/+tGqIIHSLhJzRCSUFjHnz5rFx48bxsXDhwkDeS7169bjPAIQAdQC1oDMH6b7nRhiq35O/7zdMV/Vz1WvDtAY19euvv7I1a9aw1atXs5UrV3LFhdG/f3+2xx57xI0koCLIeZ0GRTFVJgf4G8gZnSBiQIjos88+y1555RW2aNGirP7+Zpttxpo1a8YJAQNO5V122cV4otb5Ddx+Lt6/nPfghwCc38cG/91337GffvqpYpNHeC6+DxIQA4l8IAQ8/vnnn8br0a5du0oEERPgcNgynS+ReJIggmDU2Mc2YnAjhRUrVrDnn3+eEwNCUrMhhObNm7O2bdvyAVKACcnNzOKHFPycvt3UABzsX331FVdKX3zxBU/MQwju0qVL+YYfJLbddtsqrxmjEFwenJJ6v4lvRFRAmwtFKiWBGJCfMHnyZPbkk0+yt956i5euyAQNGzZkxcXFfIAUEF1k2sjdzEdeSCBTwgAhIEEPjvVZs2bxEFxkcIeB+vXrc8UklBOUVPXq1V1VUMSR+AingoRvMEQOFhMDBjKWR44cyUaPHs3NJ36x3XbbsQ4dOrAjjjiCHX744Wz33Xd33dhV/oBsooz8bKrLly/nBDht2jRODDARBQ3UgYJzXeRl4HHnnXf2FHIbwyS+RJNEQYI3mT6MwlitIAbnIyKOpk6dykaMGME3S78RSA0aNGCdO3dmRx55JN/8cBI2bexeNv+wNsnff/+dvfvuuzwv4+233+Z1nYJGnTp1KsgAA2a1zTffvAoZeEnai3GWdyLDYKsndKMhcrCQGLBZjh07lhODnygkbFr77bcfJ4XjjjuO5yGo7OV+lEI2piHd5wb++OMPHnY7c+ZMTgpI2oP5LChsueWWrFWrVhVRV3jcddddPTnNg1RCEcSo9JxIFEkUJHCzIXKwiBgwUAF1+PDh3JTkJ4kNG2G3bt34gOnIz+nfLzFk+pnXr1/PPvzwQ64SMEAIQWZuoxKsyMsAIbRo0YKrA13Ohep7XvMxLKkRlSglUZCwDYfIIWbEYPIvLF68mN13331cNXjdNGE+OvXUUzkpwLFqOuVm6lg2bYRuobg//PADL9+B8f777/OEvUwd6k5sscUWnABABGLUrl1bu7l7ycFIGDkkjiQKErTpEDlYohgQonnXXXexl19+2dPmiZDLrl27sp49e/KTshffQJjhp+L/yCMoLS3lJiMoAzwuW7YssOuJzV+U78Bo2bIlJwnd5zJlbeuugxfTk6XVZRNBEgUJ2XiIHGJKDHJ7TfgVbr75Zk4MXhzPMCGhkU6XLl3Y1ltvrdy0sslN8PO54CdYsGABz7v49NNP+QDRBeU/QGc5hJbKhIAkNa/lO1ATSvWZTdciWzVFJBF9VE/A5kPkEDNzkpMYEKp62223sWeeecZVMeCEDEIAMey///7+T0yaDU2X5KUiN5i7kKE9f/58npSGAVORW+axHyBDG6GmghCgDhB+ajr9+yWFbNRBQnpSWO+4rm755kPkEDNiAIQ6QMkHEMMTTzzBNm3aZHy9nXbaiZ1zzjmsT58+/GvV5u1l43ISgamfNICSFAgtlQcylIOMLEKY7T777MMJQZACQk/FJm866futAus1WinhxJAYkqhu8QZE5BBTcxJO2ghVvfPOO3ndHxMQhXPJJZewHj168BBNmWB0BexMikBHBIiOQpkKmIkwxNcgiKCx44478rBbmMiggoQ6wPsVhIDPKBfiMzmZvRBFpkohoaSQGJKobukmROQQQ3MSxuuvv86rgLq16cQJGr/XvXv3ipIOYtMUm5Z4Tef3dApBEAF8HYIA8IiBUNqwgXyDc889l5100kncZyJv5CibId6/MA3hUb6ObuTgt0w4kQKRRIGFm1AX9m+LUEKMiAEhq5dffjknCBMQmYPfO+WUUyqIQXf6lTdDsani//BjoEDdt99+y7755ptKj6hgmm8gDwHq4dBDD+U1n1AiHIUB8d7xiM/iHPLPZaXhpiK8mJOIFHwBLUwnEEFEcyOi2koxIwdkBiOX4e677zY6cVElFaakvn37clOSUwk4N0CRQAcHN9QIBkgIJIDvBekjyIWyAFF07NiRHXbYYdzcJEhBfhRDEIRMEjJB+iEHIgXfsKp2U4FFGxGRQ8xUA9p4wkxk6sMAldCrVy+uGpyVU2FSAglADWDTF0OUsA66V3QUsM022/DigccccwwvIIhigm5E4UYSRA5EElYTRLrZzxIih3iQA8w4V155Je/HYAKS2q6++mpuj8eGj4Y28vj+++9jpQSCBpQUKswirPeoo47i18lpelKpCS9VV4kgAiGJunFvOlRgwWZEneBipBqQ5AbV4Bb9g9NwzZo1I+ETiAOQLY5ig6eddho3Q6nUhFNREEmEjtK0kogtSdhAECCHYpqL0SUHmILQi+HSSy9lr776Kl2skIHQX9SbOv3001ndunWzNjcRSWSFktT160AEkZ9NCaGsfWgORls1gBQuuuiivKsB2OuRRAdfhjxw+kYGNgbMNniE70OQm3hEqCmc6nCmo7Q4BvI00JRn9erVPLFv1apVvvtPhAWQAJzbSB6EukA5DhVZWN7HIQoYnbp+fYkgcrsx9Us9DKW5l39i0JEDehLD14BubmEDkT177bUXz4/AwNco4Y0IIJSl2G233SpyC7x8Lq89KJyfGyG06HmNzm7wkcBpDv8JIqgQShtGhzcvwDVABNhZZ53FrwURRc7RP3XthhFB5GZzolyHCBMDBspVYzMyRShlAmz46AstRqNGjfjA9902Oz8bnBtBqD677noAQolAZaBOEwr1oT4TqrnC4a7K3g4DyLE48cQTuaJDyQ4iipwidjkSBTHcoCicNWLEIG+IML/cfvvt7N57782qjwFMPCAAJIntvffebN999+UDZSicIZ2ZbHDZXAM/6sJJHqoB8xRKfWOgBwSK/AXVA8KENm3acL9Qp06dKtqqqq4lEUVgiF34a0HMNimQwtzUKKK5ll9iUG14qFqKKqo4GfsFzEEoV920aVOeRYzidDAbyTH+8jDF+4exqZka/aiuke46mYhC+DrWrVvHiQI9ptFWFAojTECBiex0+F90RJGLHtsJQFlqtIpLZFPcCIIilvJEDCaTCjY0VF194IEHMs5LqFevHj/JHnvssTzyRkcMYshlJXThm84NLKiNTGcOcjNDqa6dG1ngEdVhp06dysuQwCQVFkR9K0Q/ieKARBShIDaRTQUx2rDgkO5Hcyu/ikHe2GAGGTNmDBs8eDAPYw0KqGB6/PHHs+OOO47VqlWLmz9U6sFUc8ikGHJFFG7Xz01dCIKQ/w+HN6LCxo0bx4sJhgE0GhowYAAnCj+RT0QUvjAsdZ36E0EEsxDJKZ0ntaAjhhdeeIH7GhCZExZADEj6Qv9okAVCUk2mpaDNSmFeSx1RqJSFTBTy1+g98fzzz/PkQ/gxggaU3DXXXMOT74SPwkTIRBS+EXmndUEMNi9ySkeEGFAKG4oBvRoQvpkroDcCom5gI1dlB/txSIe9ablFI3lVF07CUKkJueDhlClT2KhRo3j0WNCAXwitXo888khPyo3MTp4Read1QcQ3MCqjkSdikMMzZ86cyXMZxo8fzzZs2BD6+8PmA3t4u3bt2BlnnMFNTibTUpxOr35JWUUaOlWBR4TPPvnkk+yVV14J/F4h6e6OO+7ghOE1QICIwhWRLscRdYKgTOk8EcOyZcvYU089xRUDkryCBjb8HXbYgfsYYPOGOUOEtWIDQtazn3DWfCuHTNSEl/vilSichAG19/TTT/N2rUjYC/K+ITP7hhtu4PfOj3+CSEKLyGZaF0R4MwMxUFe4HBIDNhaU4H7ooYfYtGnTeGmJjCZVaiNAPSBEJuFRDGTzIo8BQ/gT5A1F1QjHrSJpXE+rJvLwmnNiIgrxiF7er732GnvkkUfY3LlzA3v/6M8BkkAHPPgnVPeHiMIX+kaxG11BRBdPEfs334H8DgFvRCpiWL9+PRs7diz3LSCk0q85CIlsyMpt3rw5z1+ACkDfAtNmqGuPqVILSYme8RMV5eanwNcyWWDMnj2bDR8+nOdWBAX0yx4yZEhFVrZXsxORRBXAxIT8iDIiCPeFAnIgv0PIxIC6QMhdePDBBz3XCMLCbtGiBe9D0LZtW3bAAQdwc5Db31QRg5MgBOFQ/H3mZKFTFTJhQEmAKODYDqKwIO4TEiQHDRrElQWZnTJGaep6tCKCMC8MyncIkRgAVFUdNmwYNyWhoJ4bkDSFhjTITUA3M9ieMzU9Of+vUxLZ9k9OAmGYAgvEo0pRwHSIx6+++ordc889bOLEiYEQBbLhoSaQ7EhqImNEKj+iIGKLoJj9G7VEyHITUX2NjOehQ4fyRYxS1SYgQQptLbt3786OPvroSiYjrwSg+5kuLNVECBQV4+8Q4MVHIQYin0AUkydPDqRo4Mknn8xrcYm6WV4SGokkKgFRTSVEEJUnOdVZCnjDEI9IbEOMvJeMZ/gPEFras2dP3jvBz0ZvUgpeTENeTpe0kfi7915NTxiopXXrrbcG4qNAdd3777+fHzJESRS3/BW6vxUoYxGp1xQlgqCQ1oBVA0ZJSQm77LLLeIlp0+keC/m///0vzz3wsmH73fT9bPi6TYI2j8xVhY4oVGQxY8YMnhgHwsgWCIlF7oQIW1b5mIgklIhE6GtBRCY3ldII8OSIAaWAejrPPfec0YzUq1cvXvIZOQh+zUBup3+viz1q+Qu2Hxq8EAX8FKj3dMstt2SdR4G5hXwMZMQHkdOSIOS9FEdBBCYzTEtLGIW0BrIBYHEj5v3GG2/k7TBVQNw6iOHqq6/mGcvODdkLKfg5+flZ7LQx5JYoACc5yF8jBBpRboh2yyYzG42KEOV0ySWXKMu1h9XDI+aAialuPk1NUSAIKIcutJwzX/RisaM+0jnnnMNNBDqg8B18EUhiU232fpRDpv4BWvjRUps6RSEPqAjMG6iKbICS7g8//HCFA1ulKMjkVAkTUp+/ayIJgqKWglMNjz/+OK+8iUglFZDQdPfdd7NDDz3UlRiCIgUiAvuIAnW5rrrqKvbtt99m/D6QVY/ETLnGFpmcjMhbVFNBHicrRS1lqRoA9DhGkhKSnlRA4hIcjugPjQXohxDCMiMR4kMUsskJfgk8oq0szE4ImUYl2UyAznUIhT3zzDOVpVWIJCqhjOUpqimfBEEJcVmalGbNmsV69+7Nli9frnwueihgEdeuXVupGLzkHxApEFHo1ARUBDrQoYRHpujbty/Pwdhyyy0z6vORIOQlga4gTxOzZVo9EDIgByzOO++8k9uEVQX1atasyUspwN9gMiNlQgxECsmYZyqiUJGE3FVQZ950A8yeMDntvPPOnvwSCZ6DrXLdOyJfBEG1ljwuWucjFiFiy9F2UgV0YENIIcoemMpY+CEGIoVkH0hkslDlTeCQgvLw/fr1yzjJDtF06I637777aku8e1W2FiPntZqq5WES9iNyMC9S3eJctGgRL5CnIgcsKoQRolyCIAdTiQNdeKFzARI5JAdeamPJJ3zRIxxh03vttRd76aWXuLJF7S6/QK9tlHR5++23OeEIf4dMRia1kxC0TO+fdioIynnI7ASHgdBVtNxU9R5GSQx0fEPHL6+qIUmVUQnBz0eVmhCb+sKFC9kFF1zASkv9W0OQL4FCkvCt6fqCJHzO5jQ3ItcKYiiRg//F+OKLL7LOnTsryaFVq1bcWe1GDjrHH5EDwaQonF+7KQmMxo0bs6lTp/LSLX7n1F9//cUuvvhiHpItCMeZwCer7AQqicL0PmqXgqCch8zIAVFIyHhWLYIuXbpwfwMiQLwoBlINhFyrCXQmxIaPEvN+cf7553OTFVQFhcFWQU5yI3JJECCHYlpq3hYeFheIAQShAk5nt912m9bHIDfgcZ4AiRgIYcxXZ7STIAmEYZ933nnsvffe8/33UDocpWNQN8zpvE44SZSkPmsHK0xM6f7SRA4eFxsWFghARQ5YHEgwQoVMEzmYYsmJHAhBm52c/gLZ7LTHHnuw8ePHc7+EX8DxjfLzSMiTTU7OENwEmpuK0/tq/BVE6oPAMV1Ey8udHBBXDmmN2HInsOBQxwa9GlTmI2oYT4iSmnDmTGCDf/nll3k4rN/Cf2hx+8wzz/DGVaQkKlCW+px1Y60gUhNlEJGDd+WAzFIVOcAOi0glIgdCXNSEUBGymoDJCA5s1GPyg+nTp7MePXrw6rKkJCpQlN5f46kgKKzV36kLEnzkyJFKcnj66ad5JJNsalKZlJyLlYiBkMt5bWp5Knph4xH9SmA6+uijj3z9HfRER48TKAlBQjolkZB5H2rYa9gKoh+Rg/uCwrjiiiuU5IAF8OSTT1aQg9O3QLVrCFFSE6qkOvG12MzxuNtuu/GETygKP0Cm9umnn859Es4QWKeSSIiKKGQh1rQLbfdI3ZyitHoguJyybrrpJu50Vi06+BywINyUA5mUCHFQE84IJzxi7qNgnx+ccMIJvM+6KrrJFLlnMaAiyuKkIAbSUnFfNAjhU5EDgGQhdH5TkQPVqSHESU04VYXsl7juuuvYfffdx//vFa+99hrPr0BQh9Mn4SzLkRAlEcp+G8ouQupBTQ7O09TEiRO5xFZVZL388st5hUyn84+UAyGu8148qnpM4HHSpEk8X8JPjwm0MBX5QKpWpglTEoGriLAUBKkHF3KAcw6mIxU5nHrqqWzgwIGVNnwiB0IclYRqk3b6JYSSOP7443lZmW233dbz30DjIpS215XkSJiSCHzfDXw3IfWgJgiZHFAauXXr1mzFihVVfr9du3Y8qQi2VV3SG5EDIc7rQF4PqlyJOXPmcGW9dq23wBzMe7TcxXME4eiCNxKwTgJVEWEoCFIPhkUB+dy9e3clOdSvX5899dRTRA4EK9WE81GXM3HQQQdxHwOqFHtdZ/BHoJSHs1S4KkeCVESeFASpBzM5YNKiBy/iuJ1AFzgkAzVo0KAiCsN5CiJyINiyLpyqWhXh9MUXX/BoJa+F/nbYYQdeHLBhw4ZKf0SCciQCUxFBKwhSD0zd61dUZlWRAyYzsqRBDnKRPS8SmciBEEclIasInZpAdzmYW7HxewHK4SPbGqYplYpQHdxIReRIQZB6UKsHMdDY/YgjjuBheU7ceuut7NJLL9UmGVHlSkISVLaunemnn37Kunbt6tknceSRR/L2pc4ciYRFNgWiIoJUEH1oyqtNSytXruQRSypyOOmkkzg5yCcqN2IgciDYpCZk1ayqCrvffvvx6Katt97a0+vCzHTLLbdU8kfIEU4mtW8RAtmPA9llqOaSnhwwQWFHfeONN6r8fpMmTVhJSQmf+CpHtM7vQORAsH3dqKKb3nzzTV6sEl3nvJAPzLZoqiVHNiXIHxFIjaagFEQfIge930FFDig2NnbsWE4OumQ4Iodkzycvw0YloesvcdRRR7ERI0Z4WgO4Nkii+/rrr6uQTUJqNhUGoSKCUhCJ7/egsqfOnz+ftWnThm3cuLHK7z/66KPcoaYrnUHkQAeNTDZZm5WEMBfdf//97MYbb/T0mvvssw976623ePKdKkfC8vWVdb+IagHc1D5EDlUn9p9//slDWlXkgPpKIAcxKb04ookckkUOfhWEDYrCTUmIzR3dFtE3xQu+/PJLNmDAAK2KsBxF2XadC8LEdCYt6qqmgRtuuIF9/vnnVX6/Xr16FZUr5ROMG1EQkkUOXohCRQxx3/i8JtRhDXXs2NHTa6KXCpzcCS0PntX+XJDlpG6ZephLC7vyQkZGJxqbiKqSAqg3A0fbAQccoA1nJdOSv4Vqk2nl119/5XH/H374IW+oI/o5t2rViodI77zzzlU+s605MqYQWGFqWrNmDfdLfPXVV66vt/3227OZM2fyA5qqsJ/l661V6jOV5oMgRrEEh7fqSmmAAOAccwJlja+55poK9aBqqpJUcsj29Bbn6yTs6ijQ+Ntvv6mlfmpu4MR84YUXsmOPPbbKXLGRKFQkIYhChLAuXLiQ96sGubrh4IMPZpMnT67Ij1BFNtl08JAwOvV5+mbyxGpZ3LxAvOQ2bXAYSHpTkUPLli151zgnOZhaJSaBHFQmEZNZBb6dDz74gDv5URJ91qxZsTcPgBQQ6aYjB7E5wtmKvJlDDjmEd1ZzVi9VVTCN87XxUgm2UaNGfC4IFWAClBmiCp3+iAT4JPqk9+ucLux+5QlGalLxkTrF8PHXX3+Vz5kzp7x69eqYZZXGFltsUZ7a1MpTG0D5unXryn///ffyDRs2lKc2u/KNGzfy5/7999/8dcTrYiTh+jmvoxi4HmJ8+umn5bfcckt5u3bt+LXENd19993Lp02bFvvrJX/+lIoo32qrrarMH93o2bNn+Y8//lieUq18Lm3atKnSXLJlPsnXCJ8NnxHrBp8baymlHsqvvfZaT9cspR7KZ86cyZ+D5+I1dGvQMvTLNUEsIXL432aGBXrggQcqJ+WNN97IyQEDk3L9+vUVExOLWrWgk0gMMiksWLCg/Prrry9v0KBBlevZrVu38pUrV1qxATqvw+eff17eqlUrzySx5557lpeUlFQ6cDiJwkaSwGfEZ8Xnxppas2ZNeceOHT1ds6ZNm5avWLGCr0esRUGulh/SluSSHIpJPVQ+0Tz44IPKybjPPvuU//LLL1pywHOTQA5eiAHXYurUqeUdOnQoLygoqHItt9122/LHH3+8EqHGfUGrDhuYIwMGDCivVq2a51PxY489xjdL59yyZdNTXSd8Rmzu+NxQ5t988035rrvu6umaXXPNNeVr167lzxPkqiIJy1CcK4IYReTwv4m6fPny8po1a1aZhFjg06dP92Vasp0cnMSAa4DrMWbMmPIWLVpoF/RBBx3EVYW4ZraYUVTzSZhQ3nrrrfI6dep4VhMDBw5UHkBsJQl8NkES+NxYY6+99ponYgWpvvfee0pTk8UHtlG5IIfC1FhDBPG/xXz22WcrJ+G5555bybTkPOHZblrSqQZx3XANnn/++fK9995bu5A322yz8uuuu45vAPKGZ5OdXTWnxMYHU0iPHj08k8TVV19ttUpVkYTwR+BzY61deeWVnq4VTMKrVq1yNTVZBOzbhWETRB8ih/8tZDifVSeWWrVqlS9dujSxpiUdMYjrNnv2bK3PRoyioqLyd955R2lbt4lcdeYTeeMbO3asUqWqxqBBg6z2c7k5rWHSNalReQwZMqSSqSkByt5X5GkmYa6JzJwuV4TA4XsItXQmxAGpRcq7xDlj1VVf2xbSWq4IsSxPhxGiO9j555/PDjvsMN57WAdU7URYIkI6vYRA2gBTMx2EtyK8t7jY3YyMuffMM89UhL+Wa4r7lVsQ/qpqOrTFFlvw0Fc8uuHmm29mP//8szbktdy+0Fdf+3c1nwu/KPVQzBIMebGNGzeOZ007gUQ51FvSTWKby2iYyAHXq3nz5mzkyJFKUgVQ3XbMmDG8Cf12222XiDml6vWhiv3ffffd2auvvspuv/12180PlUxBKOUWV4GVr5ez+iuK9Hkp6IcmREhQlIlBlRdh0TUrTu/j3q6t39yH1MPQJKuHcilhC5vd4sWLq0xWlNNA1qYuU9rW1P5yTQ2hlOxnl112GS9vbgKSCUEeSH6Sr5NbQqEN11BHrM6NS/wfdb7OOecc3rdZh9q1a3MVttNOO1mZrV+uybQW5TjQoAvd5UxKVV6zBx10UJUMa0vXav/U5xgWhokp8YX5xHjssceqkAOA1oiCHEzKISnkgDo5rVu3NpIDFiFMdW+//XYFOSSt1IjuczrrdInNq2nTprzZFJSC7rk//PADu+iii4zF/Wy4ZqbCfihhsvnmm7vO3auvvpoTiq5nRFLNTNV8bACQJS2Tqh7kiYKSCHfccUeV34XsHzx4cOJMSzpyeP3119mhhx5qLKaGYnSTJk3idnN5IevszEkiC+eG5xxbbbUVn4cwO0EtqDBx4kTeWc1EDuWWVH91qnRBpP36uScRo+91giq+tvRqZvKjIC5jCYeYKMOHD+d9pp0466yzWJ06dVw3N1tPx/LiGTVqFOvWrZuxvhAcr/DhtG3bVquydL24bb52KvOZ0xErm0FQxA/+BlxvFVAkEo5Ym4jBRBhOsrjqqqtYgwYNXJ+LOmobNmyoVN+q3N76TJ72cz8E0YXUA2OrV6/mBOEEOlZdeeWVWmKwtVpkuaKi7UMPPcQjlSDZVUDpZUSZwN9QWFiovE5uRGHTgUO3CZlIwqksdtxxR27Ge+KJJ/j1lQFHLEjC+XdtVFwq5QWlddddd7m+zvLly9nDDz9ciRwsblHqaT+v5nEiQ44UsQRDTJBhw4YpSwtffPHFrFatWsYQPBtPvs5r9NRTT3GHtG4RwT8ze/bsSu1WnSc+LyalOIZsZhJJpCIJnckJA9cVjmmY9mQg7PXjjz/2fD1tMzXBWd2pUyfX14HPYtWqVUnwRRR5MTN5VRCkHlLAxHnwwQer/G6NGjU4QZhOwDaaR5yL5t133+XKQbWY0PwGXfamTp1aYYZTEYIboZpCD6O4iE0bjNfNx6SwnAQB01NRUREvH37LLbfw3gfibwn/WBKgukZ33nmna3gwDn+wEOjCXpOmIrwSBEUvpQbIYd26dVV+jk1RmEpM6sHm64PuXkhu27RpU5Wfo4vXtGnTeLMkOKKdkTlOonAj6riQRLlL61CTulB9Dqea0F1HPIKQYXufMWMGa9KkCX8OQjnff/99a+ejm6kJ81Ac5ExADg46+pl6bFgC1329modJDhmSqOgllV0dJ4sRI0ZU+V0kcyVRPThx7bXX8rBKJ8444wy+KR144IHazc2LaiiPUV9m3Xtz5jPoImZMn0Ply1KZ6cSmuP/++3OTE8Jd8f27777b6nnolmWNcGr4a0xAV0ihIiz3RbhGM3lREMVJVw8A8h5wSnbi7LPPVpbUSFJo5pIlS7jDWcYOO+zAnn32WfbII49wEnWaQtxIQrXhqpLGdOGI+VrAuoQ3JG4h5LRPnz6sffv2vG0oyjyUlZV5Igo/ZifnQHY6Njz8/blz57JFixYlZv065xrMwSKYxARk80NFOKOZLFQRxdlO+PFJLMgnFwNDAbDatWsrO8UtXLjQtRGQraW8xedCcTj5uqBxy+LFi3mRPVwPeeB7ovieuE7OIX6WIp7ySy+9tLxhw4bl22+/PS/ed+qpp5a/8sor2gY5+SxKp5o7eF/z58/XFibcfPPNy/v3788b3uga/qiq1vrpyCeP1KZXPmPGDOu7F6oaDImy4Cjm56WMekp18ftiec+I8dkSROIrtqJJjWoCnXHGGcpeD0npEic+V6dOnSoI86677qrY4HVDRQpOgpg8eXJ5YWGhdvGiRDhq/5s6qeXy2uvIYcKECbzRkdtm1Lx58/KvvvpK2y/EjSB0RGEatre31ZUFx1pNKVvXe7LNNtuUf/vtt5V6RsiVmG25dhmbmFLPTVz0kspkgNA3lcRHmQOd70HnOLMRcEyjOBqS3mDjdYtOMpmVcL0/+ugj1r17dx6/r8OCBQvYCSecwM477zzuH4IJx2mq0Tm5c+F/wBg/fjw7+eSTeS0qN6RUBk94Q9a522dxs8GbzHWmxM0k+SRSSpQ7rU1IqQ3usLY9osm0z7v5INon3TmNejefffZZld/FYm7cuLF2YSalLARw/fXX800dxfa82sV1mxSS63r37s0dhV7w9NNP8xLYsKuLjVVnNw5rITud0BgzZ87knyN12vT8OnDyd+7cmX333XeunyUTQtD93HZycF4HHGAQTYcoLzeAIEAUTrK2DO0zJYjEOqjFQn/ggQeUP0doq9dCfLaTBTZoZKtmQwzimmNBwnHrB1ATSIRCZVNsrPIJPGySUL0+NnokrG3cuNH36/344488XBjVgmWS8BqZ5eeQktTaVoIkTjvtNFcVgcoJzz//vKuKsNVRXc0w8YtYgsJbVQsdJ7kpU6ZU+V1MKmxIpg0xSQvPdFozkaiTHGCqEmGYfoGIE5icUGFXZ6Jx3uuwDhUXXHCBsvaRVyDSCEldQTSxSVo/Ei8qQphAoSL69+/v+hqIxHMj65gThTbctRqpBz1ZoK4NJoYTZ555Js9YJfXgfTPysilNmDBBmUvhhyRgW0Yyo8pEE6Z6EOO1117jVWyzBfxeCxcu5J8jzM+QpLkpP4pwa6iInXfe2fjcb7/9lk2fPt32rOpivwSRGP+D6gbjNIuKpE6gdMHpp5+u3PyTRAZOUsj294V5KVvA3ATbstPMFPaiFrkO6E4WBDD/UMrbTUUQYWRmYhIDplGYi92Aw6JqLlnUda49KQiPJgKMyZMnsxUrVlT5HTgR0aHLzRmbVPWQ6XVHJc1Zs2YF8l5QmA6lPWR/RNCnb5V6wN80dXjzCygq+GOEirC8iU1eCAMqAp35kExoAhQEEkJ1hJ0oBZH06q246aLJihOITFGRA4G5EqbbZhjkYkPdJzh6c1kqQTdnMgWIAdVxLd6U8qoihC8CpTcQGGACrj3KqXsp+xJTKKu7Vku6elBJdkSSoBqmE7vuuiuP2PGyERJpqBeoTrWprnc2QNgrlIToTxzG6VueM2g0E4TvwYmXX35Z6SC10AaeV8I499xzXZ/z3HPP8cg0i5VcsVeCaJFU5SAmgso5DQeoV+c0wZ0kxPWGvR09IoIGHL3IQwjTFyFeC+8fJBE0li5dys1Wlsfh501FCCWBRM82bdoYn4/INJSrt7gdaQtSEB4WPE6eKoAgTMlIhMyu97x58zxlG/sF7PdvvfVW4M1fVM8Pg+AEULLbVJSQkDlhyCQBX4QXFaEyWVrirHZXEKkPV8gSkv+gMi8ha1qVOY2s6X333Vd5AqFopuyAhvFh4YUXXtDmRASxkMXmAJILC3PmzNH6IIgoMlexzjXcpUsXHoBiApzVUBJe+nfEEC29KIiWSZw44ga/9NJLyp+fdNJJSplKxJD95lpaWhra30CTHLkRfVAnPufzUUMpLODAYnKMEjInCpkg0G0OtbNMQCkY+IUsDXXF+y92I4jipE4abCIvvvii8mfdunXzXTqCkP/NFeSAhkVhlEiQX2vZsmWhfQZk9CMiy619KSFzFSEimnr16uX6/FdeeSWSvUgCgitBJMJBrTIvocQBSjU4gZaNDRs21E4wIobs8PXXX4f6+iCIMOvnoJGUqtVqkAeX77//3thFjxAMUaDgZNOmTY3Pwz6BnAhx6LDsfrRwI4jEmZjEzUUsvgrHHXdcFTlKhJC9chCtXFetWhXq34V/QNem1O+iVtXgyabuklcgaZPMS+EShVjXbjkRwLhx4zy1v40hWmoJIu2gLkrqRNERBLKnTS0eVScSgjfgJBY2UH7DTUFks6hBcmEDf4OIIVz1IIYwJ5uA9q1yEqbu8BBDFKV5QKkgEhu9hMJoKls4kuNatWqlnVhEDNndhzBt9/LpGwlOYiEHPY/CyH9wQu6PQSQRnnrA2GOPPdjBBx9sfB4CBxBGrSoBbgFa6giiOImblKi9pMIRRxxhLFNNyG5zzaZ6q1dg8QozUBhmGq/NjbKByAYnhKMinGqia9eurs/HnqEzW8b8XhXrCKJOUieLqu8DIPo+6GQpITvkgiAAOJLDWrxhOqgF0LvAjWwJmROFKicCkU0moDyMm3KI6b2poyOIoqScXOXH3377jfdTdgJlNTp06KD1PzglKsH/vcgVQWTS3c3rZ1CVZQkabtVGCcESxe677872228/4+9/+OGHvG+6hV3minQEUZxEM8c777yj7B2MkLcaNWqQarBAQThPc2EU7QsThYWFvkwlBO+koFMSnTp1Mj4XSXOikZCtuRDVpA9TlMQJgpuIbFsV2rdvb1QNhOzhJuODwpZbbhnaa6NcdNhAsAQht0ThRhDicOkW6hpHohB8UE0lK5KiHGQFYSIIlYKg8NZg4NbuMSjISjBunwFdDHfZZRc6oOSIKMRo3rw5NzW5EYRl5qVKfFBNJStsJwYZKGOAnrNOwCmIUDdTvgMt1OyBjS8XKgWbeBikjtcJmyCKioq4P4zmXPjqwUkSRx11lPG56IOO8HgL62QVOwmiRpImhbiJJSUlyp+3aNGC96s1TSRC9thtt91C/xu1a9c2RgFli5o1a7Lq1auH9vqoIkxJmbklC3G9O3bs6PoctMq1MKu6hpMgElnF9d1331V+v3Xr1lVOE/L/CfEhiEaNGoV6//B6tWrVCu39I1gi6T3P80EOGO3atXP1k6EXiFvzoBgSRUsnQRQlTUGYCEKVSalLrCFkviD33HPP0P8OMuHDKM8ubyhhmsowF0W1UaoFltv5if4QzZo1M/4eQuRz0fM8xyhKFEGobhrshyr/A7D//vtXmiiU9xDSLCwKf9o5fUlhbLBhEQSUiWxi0r1vmo/BqAengsAQfeh1WL16Nfvmm2+simKqRBBJC3EVNxCJLirAZg3TB53Uwl+Q2ADDjDDabrvt2IEHHuhKDpneZ/G8sMJQkckP9SAGqYjcEYVA27ZtXZ/30UcfWVdtF7xQLQnqQQcdQSCDUneioFNbsIsRAw3jwwI2WHQKkzdY0z3NZAPB98IiiBNOOMFIDDQHw52bGEKBmoC2sCrlEHMlkUyCEDcKrK8CIpjkSUKkEN7pDHBr0JIN0EIyFyfvMExMe+21F2vTpo3y/dM8zM38xPeQCCk3DFMBTYQs7NeRLIKQbxqcSripKjidUrQgwz2hHXLIIaH8jQYNGnDzQC7MM2FEY5155pk8fBY5EBjyZ6BDS+7mp5c5iq6IKPtuWT5EBUFYnQOhknlwKq1bt86VIChBLvyT2qGHHhrK37nwwgsrNlYnSQSxwcobSNDRWMitQH9k8Z6d750OLblVEgcddJDxOSjYOH/+fG0UU0yJooYgiETlQIj+0yrssMMOPL2eFmDuFiNMKUGbmWAS6N69eyWCCHKDdR4c6tevH+j7v+iii7iDXagHMi/lV0W4VXYFvvjii4r9xZKifS2rJfXmg+1VaNy4sXaSkKwPbwHCGRskbr75Zp49LZtmdAoikKNWjRqc6IJAvXr12FlnncXNS7L6Ub1/mofhqwd8b++99+bBDiZ8/vnnynYCOmtGHJA4J7W4QWgZqEKTJk20k4UWY/ALUGx4vXv3DqyyK0wzhx12mNZ+H+QGK7+myL7PakGm3uc999zDy7yY3jvNxdwdYAAUTHSLtvvyyy9tc1Qnx0ntlHw6goCCoFNabhcfHuvUqVOpe1+mwElv4MCBFeSgO30HZV6Sv3f88cdn/f4vu+wy7hB1kpscokvI7UFGzBuUPDEBfe11LUjjThCJUg+//vqrtlENIl9UE4VObuESBcYVV1yR1Wsh1HTkyJHcdp9r9YDRuXPnrMJd8fzLL79cSw6kIvJ7kHEruYGgF7Gv2FL2u1rqgxQmRTkIoDyvDkE7GwneTmcYCEk9+uijM3pNlNx+9tlneekON3IIo1gfBpoSDRgwIKPXOPzww9kDDzzATRl4/7L/gZzT0ZizXhI6bSu5AQWRuAimBQsWKH8Gp6YIV6RFmTuikB3IQ4cO9d39Dapv3LhxfAGLzdVpXgrSxKR6vvgM5513Hvd/+EHPnj258tlmm20qkZvKvETqIbcHGPl7MF+6YfHixVXIIM5mpkRGMekK9CEKBQuUnNP5kfHYCKEARo8e7RoxItC1a1c2adIkHtYKgheRS27JZUG/dzHw95977jlPYZHI0B0xYgS77777uFNakJtOPRA55NfEhMquGCYsWbLElmquySMIccN0BGFKdiKndXjqwUkScPZOmzatouSJCqiP8+KLL7JHHnmEb7SycpAVRK4q8cqbON4P+pzD3LT99ttX+V0Ug7zqqqvY+++/z0uBCGJzKh9ZWRHyqyTEvXUrubF06dJKe42KJOJEHGiDVZikm46bs2jRIleCIPNS7hejHOaKcuvo1YFa++jYBecf7PPwEaGJC3IFxHN0I+zTN14L80l+FO8J5iJEU4EIUPPr+++/5ySADQah1PL70713Mi1FD5h3IHYdli1bZpWCAEFY74Nw3ijIQBX22GMPUg45JgXdBit+jjIcKFgnGrKI++nc/FUba679SOJv472KzwCiaN++vTLkUff+iRyiaWbCAEGYgIOAc88R9z2O96+6zTdWFUGA5h66GkyCIGhh5pckAHmzlzdc3Qbr3GxVKjAs05Lz/Yv3DHOR/DPnQUX3/qlBVXRRt25d48/XrFnD/vjjD7bttttaoSKqJ+nm4maVlZVpf44YdlqI+SUL58Yrb7Cm57iZk8K8rzqSEO9ZEIWK4JzvnQ4o0Tq4OL+nsjI4gU6ViKyzxcSUKAgJqEJYTV8I3hejKoJMZ9P1sqHm0rykMpd5sUeblA6RQ7TgpWrvihUrKvKpVLkQcbqniSOI5cuXGxUELcz8qgeVucn5f5Pq0P0s1yTh3Azk7+neG4VXR3duinuBCDRhQtRh5cqVroeCuCBxeRA6goAZAKW+SdpHgyhUZheTnV4VkpjvzURX3sNkFsv3+yeY7y1CkcU+oQP8nE7ENVkuMQQhbo5gdycKCwuVMedUuC+/m6yJHKK8sXr5DG7PIUTnwCL/H2Vd3AjCmlpMSbrZuGk///yz8mdIbiJEkyhMZBD1kihu5EYlXeIHN4JAMVDnwVR3YI064INonwTlIKBTEG6ykRDNEx2BkGtF6HaYFGH05IOIIXQEgY5gtBERCAQ3ooA52gtBxE0tEEEYCEJVM4cIg0AgOOFGEEiUIx9ExKFKdd+wYQNbv369K0FQFBOBQNABDalM+PPPP61QD4IgZiTlxsrOIydEajyBQCCYLAlbb721Z4IgBREj6GowAajHr5sQBAIhmWSgghtB/P3330QQccRvv/3mmyAIBAJBJgy3veKff/4hgkiKgiAQCARZTaCvhwmmMhxEEDElCL99kAkEQjKBchvGTbWaPdsqEYTHm04gEAgA6rYRQVgIxCfr4CYbCQQCAXALXXUjECKIiN7Qv/76y7OCoOglAoGggpuPYYsttrCKIEqTQhKbNm3S/pwIgUAgBEEQNvkzQRBrk3JjTQqCCIJAIHiB6aAJ2BQRWY1urF5xEAgEghNumdIoxWFLuZ5EEYRJQRAIBIIXmIJdAJvK9iTGB+GmCmxKjycQCOFBV/BTwK3aa6wIIiWBEuODMMk9m9LjCQRCeIdLU8keoGbNmlV6j8dZQSQGpgQWUhAEAsELSbgRhNyd0hYfRFnSFYQfBzaBQEiWapCxdq3Z6OLWszpGxFGWKIIwKQg0EyIQCAQ36LpSCuy6665WqAeZIBIBE0HIjicKcSUQCDpV4UYQu+yySxVykH0Ssdoz04+JiGQy1UiBghCtSQkEAiETBQEHtRzmGnMVMUMQxK9JuLGmGim60DUiDAKBIIBcKhNB7LnnnlXIQSaJuBFGonwQphopbpEJBAIhuRDWhR9++MFYi2mvvfayQTkIJMtJbeol+8svvygnBIFAIAgsX77c+PN69eopFUNMCSNZBIEaKV4JgkAgEJyHxLKyMleCEIRgQaLcvwSR+gDWEwRukleCUCkHUhMEQrJJAo9Lliwx/m79+vVj7XNw7JmVwlytJQlxkxBhoINwPBEREAgEHUksXrzY+HuNGzeuoiDiqh7wTyIIQmCnnXbS/mzjxo1s1apVpBgIBIIW33zzjfZnyKBGmQ1VDoTp/3EhCOtzIXbccUfjz5cuXVrJOS2+JrIgEII/ketGlBSD83tff/219jlNmjSp5Hdw+iFipihKnQRhfS4EOj3VqFFD+/Pvvvsuo4lDIBD8kYKX34saEMFkCodv1qxZnBSCG351EkRJEiYp0uCzIQgCgZA9KXhRDlFSExhffPGF8feaNm1a8bVTQcQQJU6CKEvChN199921P5NNTGRaIhCy31R1hOAEurS9//77/ITufF4+P4OM+fPnG3+/efPmlYgh7jkQ+Ke6xHhlNm2IuCmqzyOnwjvhtC/KE9oS2Ugg5HRTVW32ePzkk0/YtGnT2Keffso+//xzHh2Epl2XX345u+eeeyqtuXyuP/k9z5s3T/t7CKFv2LBhnAnBuX9WJghJVhTbNmllRhep8CosWLDAVfISURAI/olB/B+kcM0112hP46NGjWKDBw82Vj3I12cpLdXH8bRo0YIXA3VzTsdk/ygRX1RTyQqbITIdVVizZg1bsWKFViYTCASmVNmq/+MRdYvw+P3337PTTjuNHXvssVpyQC/nSZMm8WAS1UadT6xevZotWrRI+/MDDjigCgHEOGGuTEcQS21UDzKQ6WiCrCJMi4BAIGJwJ4Y///yTm4wQ4fPKK69oXw/k8Prrr7ODDjookp9zzpw5xnV/8MEHK/0PMcVSHUGU2D6xGzVqZPw5IhWIAAiE7IgBjy+//DJ33F533XXs999/174mksumTJnC9ttvv8jmQXz44Yfa30UjsgMPPLDiQGoBUZToCMLaZDlxs3BSES0BVZg7d26liU9kQSC4E4M83nnnHdauXTvWo0cP19pFRUVF7K233uLkEDVikD/T7Nmztc/ZZ599+L5ikX+yVEkQqQ+IbtxlNk903MS9997bSBCmDE8iDELSSMELMUAxfPDBB6xTp07sqKOOMp64xTqETwIbr1iPUd1gN23axD766CPtzw877DClcoipg7oszQNKBWG1ihAQGY/Kq1NWxn7++WciAgKpBQ1ROE1JM2fO5MSAjXL69OnG14Y5pmvXrmzWrFnsySefrFJAM0qbqPi88D8gT8MPQUT1M/lRDzqCmGeTWlD9H3ZRE8Tpx5TtSQRCSKJaEMSAnIUJEyaw9u3bs8MPP9yVGNDut0+fPjzvYezYsaxly5YVa1KXVJbv3Afx9dtvv6393f/85z+sTZs2ld5zzP0Plfb/6opfKEmNgTZNfmfCzf7772/8/ffee4+dcMIJ5IcgWE8Kbt9zmlaR6fzUU0+xBx98kH377beufwO2+b59+7KLLrqI+/5kIoCacCOJXBKFTjWZCAJRV0iSsyBySd7/9QSR+pAltm+IiGTCTV23bp3y5++++67WDyEytClhjmADIXghBVGH6NFHH2XPPPOMdt3IqFu3LieF3r17s2222UZZ5dRks4/K+vr111+5iUmHjh07Gj9XvtVQBofpEjcFAcAO1dK2BSJuGk4uSGxBtIUKyIWAH0KOdooTaWb6Xon0kkEIXkkBRPDSSy/x7GY3p7MAzC2XXHIJ69y5M88sVple/CiIXM9Jp0kNmd9///239vePPvpoK4hB2veZF4IosZEg5JvWunVrLUEIWdmzZ0+lHTYKNWIyJQbTe3Y+nwjDXkJQmVSAv/76i/sToBQmTpzI1q9f7/p3URbjlFNOYeeff36VABBd6QkdKeRrc9VdOyTvmVSS6AFhSYG+Eq8EYZWjWnXzZceSClgkCMPDKcdJElG8+X7KJZs2EvmzEWHEWyl6JQWckBFVhEzn8ePHc/XsBdggzz33XHbGGWdwX4OTFJwbv586Rfmca2K947pMnTpV+3uI3HJTQDHDPD8KwkrlIAYUBCIQEOOsApJ3cJqCTFZVdY0SUYiFjggTQWhum4TqvavI1EQYRBrRUoZu35cPOSiBAZUMlYDhlRQ233xzbj6C47lDhw58vulUgIkodKohCnNKXCeQptyG2Injjz/eqIhiSBjeFES69HdZ6ssiW5UECoIhAgEOaRUQrYEkHjihdM7qKBHFjz/+yCvV1qpVi/tO8Ige3Lvtthv/PpqpI7RQtF1VEYHXz0KkEX0ycBICsGzZMvbGG2/wgQOQF/ORAIpcghR69erFey+7mYZU6iAuxCC+RhivDlhX8GO6OadjhDJR4tuLghBs0sdWFYGTD+K3dQQBvPbaa/yUFIdwV4TmIjb9p59+4kP32ffdd1/+uY844gjWtm1bTpQyeToXtZM0dCY7N9Ig4vBPBNmQAQAnM5LYoBRgMv3yyy99vUdE+iGpDaQAk6xwKuvMQ15IIQ7EIMxLJoLo0qVLhXqyJMRVaTUqMFw0kMMomxajnOyD8fHHH/NNUgecwBHehyQfmJrEwMRwRmDk+7NdeeWVbMiQIb6eu+WWW/IqlMXFxTzhCScimN1MJ0O3r7NZ+DYRSCaHCb9k4PwaIZk4KMA0AmJAUpopAkcFzG/MBwRoIBdIHCB0JiQ3dRBlYjDtDyBU4WNQQdSPUu0LUdkbfKJv6r2O9qsgrDMvyYzfqlUrbo7Rnbh/+eUXVlJSwmvLRN3MBKLDxmCK2XYCdugZM2bwASAaBYRx6KGH8gHC2HbbbZWLXr6eJvXhhwj8bKr5uN5BKEi/jmUdGUAtogMiDjkIQUW7TigEbG6ZrA9UIz355JO5YpAT2jJRCyYzUtQOAqrwXowXXnhB+xy0DIC5Ng55HKEpiPTFQmlTK8JdVXVksMguvvhiNnLkSO3zsGiQICSfFETnKJWDLt/yGMUGH3/8cfbss896SmgyoXr16twkdcghh/ANBBnoSDIU8e2ZqAu/Po6kmI1MgQX4P6qiok0nCAGPUAemEtpegE2uW7durHv37hWdFk0RRl6UhOkeRjn6T1YPGzZsYHXq1OGKTIXrr7+eXXHFFXz9q9RDDImiNPU+W2VCEENTD/1sNjMhzhmnJh0gsXEyQ1GxKJqZdFEqcLIjlv2xxx5jn332WWB/b/vtt+cbixhotQjSQHSLH3KIi1kqV6YiAZA6ejTjnsmPus3Kr/kIZI/oG5iPVKSguk9e1UKciMF0cMThCnWjVMCaR+tR9LbXEUQMzUvDUu+1fyYE0SX1MN4WU5OzPDEGzCyoSb927Vrt8+6991521lln8RO1c0JE4bSgksnC1IBHmB9QOXPcuHH8dBQ04KNBlFTTpk15bXwkD2EgTt5NbWSqNPKVYZupKnB+D61tFy5cyM1EeBRfQykEGQwBEyECLZDxi/BURLd5VQW2koLu0CjWDXwPuvpLCPB48cUXK5FD1PaDDNA19V4n+CaI9MWzpjCTcwPFgJkJGaAoQKYDqr8i69ppZoqaitA1cBEnI6gKkMRzzz1XEfUUJkAcCI+EzbZBgwb8a5AGCBmnV/zcKzGYrm1Y191vZrL8Mxw8li5dygdKyMtfgwyCUAQ6QNGBEOA7Q/QRAg+yCUP1E5YaJ/OgyqqAvtMwq+p8OWPGjOEKTKx/+TGufogCwxv1QhBQEF1sNjOh3gpuugnIqIQDN4qnBp2ZSUUSYuAEiwbxb775JndSZ2vPzmBS8nh6SPU99tiD1a5dmztHMfC1yOPAI4gkCgoChAqluWbNGt7EHsENyD8RocXi/z/88ENOe4rgeiEKDQMRSLvvvrvWVOSmFvxEr8WVGFSHKrEXwL8Ai4EKmJvz5s3jhCvvAbJPMobmpQmp99o1G4KAMc7qcFdkTMNEgoWtw0knncTt+bKZKUoTw2s7SPmzi5/j88OuiigoJAfCJJWtgztIoBoofEAYNWrU4H4QxOhjIPIKAyG78BfBF4IFjEenynPec2TRIwwUzWBgekPiGIb4Go8gA0EIUGCZRAkFDSgw+BIw0KymYcOGRv+BGxlkYkKKIym47QVQfVC7K1euVD7n6quv5sMi5zSgDG/1QxBFqYclNpmZnKcGnAxvuOEGYx4BNhxEj8A0EtXJoUqWcib5CSWhIw8Am+ZXX33FI2bEgH08bJMUQU2OCARASDYULEhBFYbq9dErKdhgQvKzD+BrmJnPPvts5e/j0AH1gGvv5pyO2XWqq8qg9kwQ6YtpZbirODlg44NdGFE5JrMAyhgPHjxYqyKiFPKqIgyTslCRifyI0zSiuebPn18RXQPSCNOWnjTApIb+zHD2Yy6CFKAOnI5+HTn49SkkjRRMewAeQcBQ0iqceuqp7OGHH64gA0uc09rwVr8EgVDXoTabmTCOOeYYnoGqAyJCMIGwkJ2+iCg5qHQx9SaiUP1c9X3na8nROHDwwQkrRhgRU3EH5gv8LnDWw2kP0yZIAQM+GdXG7FctuCWsBREYYNseAD/ckUceqX0O9gUQt+x3iOLa94n+qfc6LAiCsM7MJB5lgkC549NPP9343AEDBrBrrrlGGdEUpUniNSPXRBA6FeL2muL/sOV+//333LezfPly/ghHLr4vD/gDbADmAHwkKOSGAecxBr6GIx6EABOlKGei2oh1m7fbxp+t6ch2UtCRg9gDTjzxRG1pbxTsfPnll5XqISrWgzDMS54JIglmJoyNGzfyOH5sZjrAQYpsZVRFjbKK0G3cXhWGF3JwS/zykhiG7yGCCtFBIkIIZis4yeEoFo9wJMOJiIGvca/gKwG5YOBrmAqFuUA8igXsXMziEfcO/iUxYD6UH4XTGw5wOMPFIwbmAhznO+ywAx/oiSB3UcvUjONHOWSrEpJACm5rH74FVHbWmZdRtA8RYjJBWOCcdjUvAdV9vOAYWwhCV5sJmwFyIm666SbtcxHJMmLECO7UjkOZX7lelBeTgqrvtooodNVbTY2VdAsQp24MlDewFSZScIseyrRgYtJMR37IQSYJhLXq5ib8Eu3atau4bs4DRozbi47xNG99XFxrzUyysxrhjLALm/ICcHpEZA/MB3EMd/PTac6PScmravDyt4LahIO6Npm+B79Z49nUtCKV4H/No/88qrLqIvSQNQ3fhGXqwZN5CajmY+LjxUptnkC4wTAZoKyGCXC+3nXXXZX8FyZzTBQ/p0rxmDpjqUw1uv/LQ0Wgpt/18nu6oauu6Wdk8/dV79/La+qurfye3O6Nl3tJ5FA1eu+OO+7QkgMKVKK0htt9iCFKvZCDLwWRvrjWRDM5J4282cMHgXR72Ll1wGaA8hto0i7CXm04WWRSc8ivKvBDnmGrilypllwoACICf+oBvV5Q0l5HEOjPjcx0C9WDa/SSbwWRxgSb1YMYiDrRVXMUwKRCWr5TRbiFh8bpOug2Mbc+vLoTuZdTepAnei+qIujX9/J7uvfldn3d7gPBnRxkkoCvUUcO8DvAMW2hevC1jxdkcLHfST0U2zR5VJnVUBFQB4iaMQG9F1BP36LKjqGc6rMhyagSbKb3NMmd9vK9xoV6+OCDDyqcz6rrjY5ySFQ0mQ5jurZLUu+3g9dfrpbBHxhj2wRynt4wAeCA7tfPvRUGarOgMJtTSciKIm4qwq/K8HKq8usLyOa5uRpBfDav6oyQ/eFCrEccAP/73/9qn9O7d29lxzhV5FIM4Wv/zkRBFLJ/o5kKbZSfsopAPD5KfeuKdwmgkB+UhFt/WjoN2kWUuVQdhGDWNr4eNWoUD2dXAQUg0bZ3l112sVE9oOkNopfWhqYg0i8+wbYFq1IRSIS69tprXV8DGdjoTKdSD0nfELNVElFegDZ9lqSYmZDHNHDgQO3voZUoSp6YospijAl+yCEjBZG+2MWph3dsPmnI2dWtW7fm8dIm4MSBUtnOOk0qaUobBYGQH/UAk/DQoepATDS1evfdd3npeGf4siXruEPqPZf4eUImPgiW/iNltqsIDJRZQM6DG1C0DqcPWUXo/BCkKgiE3KsHVCN+8MEHtb939913V3Q51EUvxRhlfskhY4JIY7htpg+d2QDFurp27er6Gq+++ipveC5qAtkS+kogxFU9yHkPcEzrCkNifSPnQZUU6tZxLybIaL8uyOImWOWsVk0s2dT03Xff8cxKt05rKAmOEDmU67Co6xSBELs1DIhD2siRI9kFF1ygfA6KLH744YfcTCwKOJoc0zFcu76d01krCNuc1ToVISYHavibivgJoIZT3759eQVSp4qwOfSVQIgiWWCgxLwp2OTmm2/mjmmvCXExPNhNyIQcsiKIbGRL3AhDTJrzzjuPlwV2A2yd8EfA1CSG09xEJEEghGsBEAOmJZSRV6FDhw68B4yu5liMmwEFsk9nRRCpi4XifSU2qwg51A01lx555BHeE8ANzz//PM+NkM1U5LQmEMInB5kkXnjhBe4bVAFh7Pfff782nNWS0OSS9D6de4JIY4zNE895smjUqJEnUxOAWk1oZagiCTwSSRAI4ZEDOhiaqiHcfvvtvNOfl/pYMVYPWe3PBQHdIDiri2yWq/IGj+5lJ5xwAispcRdPKB/+5ptvcmLRVYS0YBISCJFZq6KcRufOnXnAiArHH388Gzt2bCX1oGojGmPHNIDQ1rrZvEC1gN6Itb4IVZVOTKRHH32Ut5l0A2yfp556qrFeEykJAiFY9fDAAw9oyQHVmocNG+bJ5xBjcghkXw5KQVgX8qo7mci1miZPnsxOO+00T5s66s6jty1qvXhpek5KgkDwTw5Ym5988gnPaVD1c8G6g0+ibdu22vLsljimMw5tDVxBpN+EdSrCrc/Bscceyy6++GJPr4UWpegxgfLhzsgmUhIEQvZkgXWEApu9evXSNvsaMGCAlhwsc04Pz5YcAlMQ6RtUxCzqWe08pchKQlYRmIiwdb7//vueXq9bt27sscce4yU8dHZPUhIEQmbqvkePHmzcuHHK56AiwksvvcSjEXUEYVH15bpe24qGriDSFxJvZrStKkL+v6wisNGPGTOG7brrrp5eD5P30ksv5Sn/5JMgELIjB/l7Q4YM0ZIDEl1FSX6TerCEHEYHQQ6BKgibVYTqxCI2c2EqQqo+TE6mPtYy0JQEjrLNN9+clASBkCE5iLWI/vBQ8ogwdAJ5SyjHL5oAOUnCoqilQNVDoArCZhWhUhDO5BpkWGPD94qnnnqKlASBEAA5LFq0iJuWVOQAIBlOkIMqKU4+kFlADoGph8AJIo3BthKDjijEgHMMJTa84plnnuFObpCEriQHkQSBoA9nRQMgdHRcvXq18nmXX345O/nkk43JcJap9UD338AJwmYVYeobIUjixhtv5I5or0BJDlSZhGnKmXFNSoJAqDrnBTngYNWzZ09e+0yFE088ka9HlXKw0O8QuHrg1yOkG1rELPVFqE4xzsimP/74g5PErFmzPL8m/BcoSbz11luTT4JAcFlvGBdddBF74oknlM9Baf6JEydy/4OKGHSNgGK+ruoGTRBhmJgS4YtwKgh5EmJSonFQs2bNPL/WlClTeMY1+k0IoiGfBIHIQU0Od9xxh5Yc0DoURfqc5ODWI5zUQ44URNJUhHiUTUPY4FGH/phjjuFONK/AyefFF19kO+64IykJApGDYo09+eST7MILL1Q+B+Hmb7zxBisqKvLklLZoHdUNgyCqhfVu0292sK2TV+ePkOs1YbIirX+vvfby/Lpz5szhpLJ06dJKjmu3kuEEQhLIYfz48eySSy5RPgeFMfFzEzmozEkWkMPgMMghVAWRvqlW1mgyTWTZLCQ2+LKyMh6jvWzZMs+vW7t2bfbyyy+zfffdV9u21DL7KYFgJAfkMiAiadOmTVWeg1a/qHUGBW4iBwvXTSA1l3KuINIX3soaTV6UhFxCGCcaOMxQe94rUMu+U6dO3NHtVBGqznSkJgg2kwMS4VAYU0UOCOyAWVZFDqawVksOVcPDIofQFYR0063rF2Ga2KoeEtjk4YuAksDm7xUo5YFEHyQCyeYrU9VJUhKEuK4fFTm8/fbbPCpww4YNVZ4HRzRCxdE6lJ94HeRgueLOut9DXhWEhMFJmeiqqCYx6tev71tJ4MSEPIlbb72VZ4rKEU6UK0GwnRzQ06Fr165KchDKAeSgIoUEmGND31cLcjgJ3kk9FCdpouuUxHfffce6dOnCvv32W1+vj1PUQw89xLbZZhttXLdz8pOaIMSVHHCYQnUClMh3Aj4HkIMo3a0qgWO5wkav6Q42EUTL1MPcpE14OY/BGQKLDf/zzz/39fr77bcfe/rpp7kKEeamhCwIgqVrRRXoAbPRWWedpayvhE6Or7zyCtt///2TSg5Aq9RnKQ37j+TKxMTSH2a07ZPeeXrXpfkjBHbSpEm8yJ8ffPrpp7xb1uzZs6uEwVINJ0KcyUEcotAuFM21VOSAdqFIKkWHRlXL0ISQw+hckENOFUR6Elgf9uplAchKApnTWAzTpk3z9fooE37XXXexs88+u5Lz2klKpCQIcVobN9xwA7vnnnuUz2vUqBHPc0BekZjLMiEkhBxCDWvNm4JI3yR8qEQ4rL0U9sOGjh7Vzz33HCcJP0ChMlSqhANbV55DlVRHaoKQT2LQkQPql51xxhlacjj44IPZm2++WUEObrkOFh+MBueKHHKuIKSJAl9EyySdluTFoFISeBw6dCi7+eabfW/ie++9Nxs7dixr3Lix5wbspCYI+VwH8npYuXIlL9mta9sLX92jjz7KttxyS2X9M4tLdztRmvo8rXL5B6vl6YP2TcrCUPkknP4IKAmM/v3787aIW2yxha+/sWDBAh7qh6gOQTZeQmFJTRBybVJyfj1v3jzWunVrLTlcddVVbPTo0RWF93QluxNyCMr5vlmQx0kzNPXQL6knKFWEk9jUP/jgAy63V6xY4fvvoD4+ZPr222+f5IVEiLBqEI8oJXPOOeew9evXV3kuCAEh3Sit4TxcJaDpjwrDUp+pf5IIAo5qmJqKkk4SKpPT999/z0nik08+8f13kJCHUsgIA/RqciKiIOTKpAT/2fXXX89NqirUqVOHd1tEm1Cv5GD5PC5j/4a1rs31H86XiUk4rPsmadHozE0qkxPyHCZPnsxLbPgFSnocddRR7N577+WZ2CIc1lTTybmoCYQwyAFlZjA3deRw9NFHs3fffbeih7RpnSSoYGXffJBDXhWENIHGpx66JH0BOZsDyb6ERx55hN1000385OUXiBd/+OGHWZMmTVwXGKkJQpgmJVRjRVg2nNJVTqqp+QhVMWDAAF+KIQFzdkLqc3XN26E2ApMqMbkRXhaTM0xVkMRHH33EF5efkuECsOeiNy9aNAqHuJcIECIKgt/5rDKjolQG5t/w4cOVKrVWrVrcJHr44Yd7NiklZJ7mNOchkgSRnkhQEONpYVVNqJPVxKpVq9jFF1/MT2KZAFnbqAyLHhNONSFOcfJiI6IgZKsa5s+fz84880xtSRmYm6CQd955ZyUByHMygYeYrqnPNiGfb6BaFK5C+iKMTuICM3WmE2W9xakfbUjhvENlV2RS+wVUSLt27fjzkZgk+yZk9aI7DRIITnWgIgfhiEamf5s2bZTkgJwG+MhQU2mXXXbR+hqcSjdB5DA63+QQGQUhmZoSFdVkOompQmFlJ/PcuXN5FvXXX3+d0d9r2LAhX6AdO3b01HmL1ATBq2r47LPP2LnnnquNwGvWrBkbOXIk22effSodikzmpYTNwTKWp6ilSCqI9A1PXFSTSkk4VYQqoQ4DVV1LSko4SWSyWL755ht24okn8lBalB9XFf7Tda+jJDtSDaqv0bMBvgaUxVCRA1Tv1VdfzWbOnMnJQWdSogNK/qKWIqsgpEk4KPUwkE5nar+Es2w4HmfMmMF9E8uXL8/ob6K/xJVXXslfA01Y/FbGJEWRvDnpnJ9vvPEGu/TSS9nixYuVr9GqVSseTQf14EU1JHiuodbSoMgcXCM6IRNTq8ltUZpamcoZ2GvWrGGDBg3iNZkyPd2jENrAgQN59momJZSJKOwlBt2cXLJkCT9cvPbaa8rXgK8B4asgj+rVq2tJwfk91XxKwPzKea2luBJEEfvXH1FIC7SqvFeFwoqBJCPUdPLbrU4GcifgyD700EON/gkiimQRgzwPUUH47rvvZsOGDVN2fAMQtjpkyBDWoEEDY3Vjmk8cMCnB71BGBOFtkvZJPYyixao3OTlJQjiyYQuGAxqNVzJJrhM48sgjeYIeslrd+vwm+NRnPSnI/8d8evLJJ3nV4Z9//lmrRO+8807u4zIRg+r/CT5swO8wOmpvqiDikxYE0YcWr5kkdGriyy+/5E5BqIqMJ0hqgZ5wwgncTICy4kQUyVILAjh4oFrw4MGDteoU5iSoV5ickJypmg86gkj4nEFIayQDdKJOEDAxvcMS7o/IRk3g6wkTJvDokkyd2AAI4fjjj+eL34+iILKIPzGgi9ttt93Gw1d1hwioBfxO3bp1fRNDglUDgNahHaIStRQrgkhP1pZpkiikZe1dTTgJ4/fff+cF0kaMGKG1GXsFsl9BFKjj7+bIdlv4RBb5IwXTfEI/aJTjhqnoiy++0L5m27Ztub9K9FbXFaTUqYWEHx7WpsmhNKpvsCAmEzuxpTiyVRNOokDOw+23385eeukl/v9sAGf2JZdcwrp06cJj3HVZr6QqoksKzvkD/xUa9MD5jAglHZDHAD/Escce64kYSDUo0TUK2dKxJ4j05E1Ug6Gg1ISurhPKH2CBv/XWW1m/jz333JOdd955POlup5128lVkjZRFfklBfI0ikMhTgAN69erV2teuV68e92uhMZUo+ugkBpNpiQ4HFchLAyBrCSI9kWFqKqYtwL+a0DmzZ82axW655Rb28ccfZ/0+4KSEmkCXsEMOOcSoKIgswiUEL6SA+z99+nTe5nbixIncrKQDSrOAGE455ZRK+QxuxEDmJCVKUp+9QxzeaNwIItH1mjIhCXkz0D1ivP3227xV6YcffhjI+0HF2F69erFTTz2V7brrrkY14Tf2PemEYUqE9OJ8RrfCp59+mpuS0FzKhMaNG7NrrrmGde/e3ZdicLufCb6HZSwidZasI4j0JCendUBmJ5WvAvWdQBS6JvJ+gdPmEUccwU0SnTp14qU8/JKFlw3F1g3HLSveq+MZiW3IdkY1YKgGN/8TAhCQ/YzINaECiRiyRuSd0rEniPSkJ6e1j03Dq39Cfnzvvfd4xBNq7GTrzBbYdtttOUl069aNJ+EhVt4LWWSz0cRlQ/JSHsWPKQlj/fr1/P4hGgnta1Hi3QQoBISrXnbZZezAAw9UbvZEDFkh8k5pKwgivQjgsB5Kcy57ojCZn1D1Fc7LF154wXWD8YPtttuOKwtEwaAPMXpdBFF+IZONKMzNK9O6WF7NSM6vV6xYwaZOncp9CtOmTfN0z2rUqMF69+7NizXWqVPHMzEESeQJQP/UtRgWtzcd67tHmdbZmZ1ksnCW9nYqi19++YXbrFEMEDbsIIGTK0pEI7+iQ4cObP/999c2icm0Zk8UN6pszEdy6Qs0gkI0GtQCymx7JSWEKaONLYozwvRHiiE0RDZT2mqCSC8UimzKUk04iQLQqQpsSDiZjho1iju2gzI/yUCP4uLiYta+fXvekQyOUj+qIojNyu9zglYKOpWwadMmTgIon4KBKDQkQXoFzHyIREKkWYsWLbTXMVNiIHKogthELNlKEFSOIwSi0IXIyo9lZWVcUaBGzw8//BDae4b5CWGzGFAXKPVRWFhoNHHoyCJspZGpL0H1PVxnRBmhe+CcOXO4UigtLfVt6oMaO+yww3igAMKQQRJEDDlBpMtoJIIgJJKg8NccEYXz/4ifR5cw+CkmTZrEs3FDnbSpjQg1f9CEpmnTpryIIDJ7kcQlR9z4zdoNcoPzYz7C1z/99BP76quv2IIFC/gjEhnnz5/Po48yRZMmTViPHj3YaaedxvbYYw8jgRIxBI4yFqNwVqsJIr3IKPw1B0Rhcm6LPgFwkKLAG0gjm3LjfoFEPfQeAFGAQMTA5rjbbrtx1ZGP8g64PiiNjWKJYkB9ofsaBkpaBEWq+LxQCYgUA4FmQgREDFkjduGs1hMEkUQ4ROEkCbHhiUeTykCXuylTpvD4e7RFhf08n0BYbe3atdnOO+/MdthhBz5q1qzJB8wucNRioAXrFltsUdH/W/QDx+cD4YmBz4NQUvgAxPjtt9+4Q3/VqlUVjytXrgyVKBs1asRJAaN58+a+CUAXkUTEkGxysI4g0ptZcZokCCERhUlZOElCjLVr17I333yTDzi38X9CZgBZIU8BUV/HHXccN6/Jm7efkFQqeRI4QA4ltnwYK+84daMLnihMqsKLupAHfBZwuIIsEBEFuzvBDDjqkVyIgfwRqJ9s6iGRGSkURLIrHBEEkUTkVIVMEm6EgeQuhGuKsXTp0sRfc5jDELWF6COE/O63337G3BBSC0QORBBEEpFVFV6d206yUP0uWlrOnj2bV5jFQDZ3pnkGcQEc7EhcAyG0a9eOf/2f//zHUwltL6TgRS0QMRA5JIogiCRyTxRuZGEiD93P4a9ALgBCP8UAiZjKU0cd6KEBPwKIAN3Y4FxWEYKfrzMxIREpEDkkmiCIJOJDFjryUP3exo0beYjowoUL+YDKEGGjv/76a6SuEaKmmjVrxkkASX4gBmcJdDeF4KUBj99MciIGIgciCCKJSJOFvPn7IRDV1wIILQVRINcA/gx5/Pjjj7yrXhhA21XkISBBDYQgSGGXXXbJaPPPVCkQKRA5EEEQScSKKFTfdyMKFUEAcv0nt+c6/y5yF1BsUCYP+Wsv6gObLDb++vXr88Q85CGg41pRURE3E8GZLDuU5a/9koEfkxGRApEDEQSRRCLIwrnpeyUSr2pFV80WyW3CVIWBOlMogyEDeQhff/11BRGIRDr50UkM+NoLMXh5JFIgcsgVqift7uLmpjcHIoncXG8lKbhtbPhdfG3a9N2IQEU0Ol8HNnA8wl+AnAMUBQRpwDnuJAiYqKBEkHWtIgl5qHpcZJObQK1YiRyIIHJHEmg4RGU58kAWJsIQ5KAiDB1BuKkS1e8JU5Xc/0Js4CABVekJgT///JOX5xDE4FQQOoLwSwhECpEA0v77J40cEksQEkmgXgrVboqJunB7nlfyEF8L1SDIB/9XkYQKKLktk4OKIPx0yMvksxNyRg7W1FYigvC3QZWmNocORBLRUxdeSENWFToTlYkg5EdhznJroSkThEwMftUDKQQiByKI+JBEq9SX4xk1HYo9abi9lspUJb4nqwcvBOH0N5j8D6QQYgeQQtfU/ShL8kWoTvOAL8oySUkQScSYNPxstLJqUDm3TUD/Bq/OadP7IUKILDl0iHuznyBQjeZCxULlcjI1RtPViB9pmKKFdL/r/L8cnioPNwWhynVwK45ncoAT8orRRA6kIEwk0Td1isRjP7oidisOldlJdlTryAFAoyATMXlxSBMih2Gp+9SfLgMpCLdNBZOkL10JuxWHk0S8KBAvBKF6XULk0ZfIgQjCzyYCqQnnNUnNBBCFqky2iSQEQaiIgMxHsQLWd6sk5jgQQWS/gZSmSaKUrkaySMOPgjCpBSKKSKM0TQ60vokgMt4wyhg5r60nBb+bOQiCSCDWwHrukPQwViKIYDaQtakBnwTZKBNKHk78/vvvdHHiC5TN6EuRSkQQQW8Wwxj5JQgOBUGIDYS/YRhdCiKIsEgC9sq6qVFCVyO5kBWE7f2yLQHWa13yNxBB5IIkYHKCX2IwXQ1SEITIYzDWK5mUiCByTRSD2L8O7DK6GslTEKQcIg+syw7pdUoggsgLSUC6wi8xga4GKQhCZID12Cq9PglEEHklCZicurJ/s69JxiZEQQCkIiIHXi4H65FMSkQQUSOK0Wk1QacWe+6pliDc2qESco4SRlnRRBAR31DKyIFtP1Dum0ghUhCO6DK6FEQQcSCKQYzKdFgLVHxFyW8ZRBR5gSiXMYguBRFE3EiiNDVAEsjAJnuoZaBIprwC6wkZ0VRLiQgi9kQhMrBL6GrYRRCEvKCEUUY0EYRlJCF8ExTpFCOYFMK6desqfsf5e6QsQlMNfcnXQARhM1GMZv+W6hhNVyPeBEEKIqfg64YilIggkkASojosFAXZT2MK8kHkBFgfHaj6KhFEEomiJO3EJrOTBQqCwl4DhTAnUTY0EUTiiYLL59Qgp1tMCYLIIVBgHZA5iQiCIJHE2nTTdBAF1XWKEUGYfocIwxcmpImhP5mTiCAIaqIoS9d1gn+CpHWEQT6IwIB53iFdP6mMLgcRBMGdKErSYbFUTjziCoKQMcrSxNCB/AxEEITMiQJmp75EFEQQFhEDHNB1iRiIIAjBEMVoIopoEgSZmTIihtF0OYggCEQU1gKZ1HL0EhEFEQMRBCGKREEyPY8KgqBFCREDEQQh/0QhnNlEFDkkCFGLiaAkBuF8JmIggiBEgChE1BPVeQoQ6PvgRhCyeSnhpibMu7oUlUQEQYguUZSl6zzVZP92tSujq5K5enAjCFXb0YShLD3PaqbrJdF8I4IgxIAokJk9KO2n6MrI/JQR/vnnH1eCSCgxYD51TfsXBlHmMxEEIb5kMUEyPw0jVeEdJgWxceNGtmnTpiSphzL2vzpJMCNRSRgiCIJFRFGWrnMjVAUt8CwUhFARAk41YRFpTJDUQn8yIxFBEJKhKkAS8FWgSCD1pfCpIARBqIjBAnIoTc+LmukaSXSYIIIgJJAo4KsYlu5LUZfIwh9B/Pbbb66vESOyEKRQN92HYRj5FpKN6nQJCBJZwHQAG/Ow1KZWlHrskhpnpkbLJF0HoQDcopiEgsDvVKtWLa7KAaQwJjUmkOmIQARByIYsTkyN4iRdBzcfhFAQMqmIkbqGUf1YJanxKpECgQiCEDRZFKbJon36sdAm5eBUEV5MTE4F4ewuB6LIM2HATAQfwow0KZDZiEAEQQiFLLC5jE6PvqmNr2VaVcRWXZgczG4EsXr1av47YshEkWcFIVQCMuzJp0TICOSkJmRLGKVpZybi4rEjIt9iMItpYp58+seG/9dffxl/f+rUqUrzkkpJhOyfKElfd34f0vdjGJEDIav1TZeAEPKGKxRGi/RjUVQJQSgGDPge1q5dy4qKiiqS4XQYMmQI69WrF6tevXrF2GyzzbiawABvCjURkKooSxPCPFIIhDBBJiZC6AqDSWGzaR+GTBoto0Iast8B4/HHH3clB+Daa69lDRs2ZIccckjFcwUpyKohQ19EWfr6zUuTQin5EAikIAhJUxpCXWC0l77OiXqQyQHq4YsvvmDFxcVs/fr1nl5rxx13ZFOmTGENGjSoUBFQD0JJyCpCoyTK0mOG+JoqohKIIAgE8yYOhVHI/ucAb59+LA6KHADZ0bxs2TJ21FFHsbKyMl+vCXIASdSqVauKmSlNEiVpYpiRfgQBrCUTESGq+H8BBgBoz6eNKuioDAAAAABJRU5ErkJggg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Rosa", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "691fa8ed-cc2f-42b8-99c8-782221351d7b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "15", + zIndex: "15", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Jack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Jack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "83c449cb-6fd2-4f26-8b44-5cd678ea5cb7": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "23", + zIndex: "23", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Lee", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Lee", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "69989702-ff44-4fb9-8e3f-d15c307ad947": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "33", + zIndex: "33", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Kevin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYgAAAGICAYAAABbQ3cmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAZkhJREFUeNrsXQd8FEXfniC+dgkqFiyEjkq1gwgBK2IBxAKIgr29ChbsAvZKUbFLszdAKaKIBhAbKgELigJBREWkKIKC+uW7Z7zJO9nMzO7e7d7tzv6f32+4kOQud7sz88zzrwWMQCCw8vLyYuf3CgoKSujKEJKMAroEhJhv7C1TD4Xp/8qbfHvHrxaH8OedBDJD8bO1KaIppTtFIIIgEMIjgGLHxl8cw49T4iCSEiIQAhEEgeBOBNjwi9KjvfR1UlCWHjPE12TiIhBBEJJGBFADLdMKoEX66yK6MkbigMKYl1YcpSniWEuXhUAEQbCBEAQZtCcyCJw0oDZKyERFIIIgxIUQiiVCKKYrkjOUSIRRQpeDQARBiJJCOJEIIXKE8SopDAIRBCGXhAAfQpe0QsBjIV2VyAM+iwlphTGBfBgEIghCkKRQlCYDUgl2qQuQRRldDgIRBMEvKbSUSKElXRFrUSqRBZmiCEQQBFelcBmjaKMkAmpiOCkLAhEEQZACfAh9UuNMUgoEh7IYkxqjyWdBBEFIHjF0SZNCF7oaBBfAwT0mRRQT6FIQQRDsJYUi9q/5CIqBoo8IfgElMTo1hpMJigiCYA8x9EmrhWK6GoSAUJJWFaPpUhBBEOJHClAI/dLEUERXhBASoCTgqxhGvgoiCEL0iQFkMJD9a0YiEHIJqInBZH4igiBEjxiK08RQTFeDkGeUpImihC4FEQQhv8QApQDHM4WoEqIGhMoOJz8FEQQhP8QAxVBEV4MQcZSlFQURBREEgYiBQCCiIIIgEDEQCEQURBCEvBEDMp2HEjEQLCWK/pShHV1Uo0sQWWIoTo13Ul+OJ3IgWArM6/GY5+koPAIpCIILMRSlFQPVSCIkDRPSiqKMLgUpCEJlYihMDRDDEiIHQkKBeb8E6yBdCYBACoKQWgwoiQEHNC0KAuFfoGwHHNnD6FIQQSSVGIrZv+YkSnIjENRAsl1/ysomgkgSMRSmiaEPXQ0CwRNGp4mCCgISQVhNDn3S5EDmJALBH9amSWI0XQoiCNuIoSj1MIpRMT0CIVuUpEZfinYKHxTFlBtyGJR6mEvkQCAEAqyjuel1RSAFEVtiaJlWDeSEJhDCQWlaTZTSpSAFEUfVQORAIISHlqQmSEHEiRiKGPkaCNnNIfeFW0BLV4ESRr4JUhARXtj9GPkaCD6IQDUyeS6BozitJvrRpSAFEaWFXphWDVQig5CxKshWPZCqqIQJaTVBeRNEEHld+Di1oOIq5TUQPG3yXkjA+Tumzd/5MyKKCpSlSaKELkVmIBNTdhvBoNTDO0QOySYDk7lH93PV9//v//6vYqh+pvs7ZGLSogjrkxzYpCByvSkUplVDMV0NUgh+vq8iEBm//fYb+/rrr/koKytjP//8M1u3bh37+++/WbVq1dh//vMfttVWW/GBrzHOPPNMVrdu3UrKgVREFUBFdCWTkz9Up0vge3NoSaqBCMH0Mx0hyF9j0//ss8/4+PzzzytI4ccff/T9/vbcc0929tln89cXxCB/TeDAYQ6lxDtQzgQRRFgbBaIjhtKVIJXghwx++eUX9sknn7CPP/6YzZ07l5MC1EFQpqEvv/xS+16JJCoBhzpEOfWnMuJEEEFuFlR9NaGkYPqeihD++usvTgKzZ8/mhICxZMmSwN9rrVq1WOvWrVmbNm3YMcccQ6TgD2hI1IJRdVhX0Exy3zSK2L/+BsqITigpqIhAPG7YsIG99957nBAwPvroI/69IAHfQ5MmTdghhxzCDj74YE4MjRs35kQgBl/MjsdKC90DaQSlaGJEUDA1daXEOiKITDcP8jcknBScj//88w9XBe+88w6bPn06++CDD9jGjRuDtYMUFrIDDjiAHXTQQZwQDjzwQP49mQBU5BBFJ3UMyAIKgvwSRBC+N5E+7N/kN0JCiEFHCogkeuONN9iUKVM4KaxdG5xVQqgDkAGIAI+yOnASgun/qg05CsohJoqiL/WZIILwupHA30Dp+gkmBTiSJ02axElhzpw5PA8hCNSoUYMTgVAGUArbb799pY3UqQRUJiSTaSmTDTkbkvBi0ooJSQxLvc/+tGqIIHSLhJzRCSUFjHnz5rFx48bxsXDhwkDeS7169bjPAIQAdQC1oDMH6b7nRhiq35O/7zdMV/Vz1WvDtAY19euvv7I1a9aw1atXs5UrV3LFhdG/f3+2xx57xI0koCLIeZ0GRTFVJgf4G8gZnSBiQIjos88+y1555RW2aNGirP7+Zpttxpo1a8YJAQNO5V122cV4otb5Ddx+Lt6/nPfghwCc38cG/91337GffvqpYpNHeC6+DxIQA4l8IAQ8/vnnn8br0a5du0oEERPgcNgynS+ReJIggmDU2Mc2YnAjhRUrVrDnn3+eEwNCUrMhhObNm7O2bdvyAVKACcnNzOKHFPycvt3UABzsX331FVdKX3zxBU/MQwju0qVL+YYfJLbddtsqrxmjEFwenJJ6v4lvRFRAmwtFKiWBGJCfMHnyZPbkk0+yt956i5euyAQNGzZkxcXFfIAUEF1k2sjdzEdeSCBTwgAhIEEPjvVZs2bxEFxkcIeB+vXrc8UklBOUVPXq1V1VUMSR+AingoRvMEQOFhMDBjKWR44cyUaPHs3NJ36x3XbbsQ4dOrAjjjiCHX744Wz33Xd33dhV/oBsooz8bKrLly/nBDht2jRODDARBQ3UgYJzXeRl4HHnnXf2FHIbwyS+RJNEQYI3mT6MwlitIAbnIyKOpk6dykaMGME3S78RSA0aNGCdO3dmRx55JN/8cBI2bexeNv+wNsnff/+dvfvuuzwv4+233+Z1nYJGnTp1KsgAA2a1zTffvAoZeEnai3GWdyLDYKsndKMhcrCQGLBZjh07lhODnygkbFr77bcfJ4XjjjuO5yGo7OV+lEI2piHd5wb++OMPHnY7c+ZMTgpI2oP5LChsueWWrFWrVhVRV3jcddddPTnNg1RCEcSo9JxIFEkUJHCzIXKwiBgwUAF1+PDh3JTkJ4kNG2G3bt34gOnIz+nfLzFk+pnXr1/PPvzwQ64SMEAIQWZuoxKsyMsAIbRo0YKrA13Ohep7XvMxLKkRlSglUZCwDYfIIWbEYPIvLF68mN13331cNXjdNGE+OvXUUzkpwLFqOuVm6lg2bYRuobg//PADL9+B8f777/OEvUwd6k5sscUWnABABGLUrl1bu7l7ycFIGDkkjiQKErTpEDlYohgQonnXXXexl19+2dPmiZDLrl27sp49e/KTshffQJjhp+L/yCMoLS3lJiMoAzwuW7YssOuJzV+U78Bo2bIlJwnd5zJlbeuugxfTk6XVZRNBEgUJ2XiIHGJKDHJ7TfgVbr75Zk4MXhzPMCGhkU6XLl3Y1ltvrdy0sslN8PO54CdYsGABz7v49NNP+QDRBeU/QGc5hJbKhIAkNa/lO1ATSvWZTdciWzVFJBF9VE/A5kPkEDNzkpMYEKp62223sWeeecZVMeCEDEIAMey///7+T0yaDU2X5KUiN5i7kKE9f/58npSGAVORW+axHyBDG6GmghCgDhB+ajr9+yWFbNRBQnpSWO+4rm755kPkEDNiAIQ6QMkHEMMTTzzBNm3aZHy9nXbaiZ1zzjmsT58+/GvV5u1l43ISgamfNICSFAgtlQcylIOMLEKY7T777MMJQZACQk/FJm866futAus1WinhxJAYkqhu8QZE5BBTcxJO2ghVvfPOO3ndHxMQhXPJJZewHj168BBNmWB0BexMikBHBIiOQpkKmIkwxNcgiKCx44478rBbmMiggoQ6wPsVhIDPKBfiMzmZvRBFpkohoaSQGJKobukmROQQQ3MSxuuvv86rgLq16cQJGr/XvXv3ipIOYtMUm5Z4Tef3dApBEAF8HYIA8IiBUNqwgXyDc889l5100kncZyJv5CibId6/MA3hUb6ObuTgt0w4kQKRRIGFm1AX9m+LUEKMiAEhq5dffjknCBMQmYPfO+WUUyqIQXf6lTdDsani//BjoEDdt99+y7755ptKj6hgmm8gDwHq4dBDD+U1n1AiHIUB8d7xiM/iHPLPZaXhpiK8mJOIFHwBLUwnEEFEcyOi2koxIwdkBiOX4e677zY6cVElFaakvn37clOSUwk4N0CRQAcHN9QIBkgIJIDvBekjyIWyAFF07NiRHXbYYdzcJEhBfhRDEIRMEjJB+iEHIgXfsKp2U4FFGxGRQ8xUA9p4wkxk6sMAldCrVy+uGpyVU2FSAglADWDTF0OUsA66V3QUsM022/DigccccwwvIIhigm5E4UYSRA5EElYTRLrZzxIih3iQA8w4V155Je/HYAKS2q6++mpuj8eGj4Y28vj+++9jpQSCBpQUKswirPeoo47i18lpelKpCS9VV4kgAiGJunFvOlRgwWZEneBipBqQ5AbV4Bb9g9NwzZo1I+ETiAOQLY5ig6eddho3Q6nUhFNREEmEjtK0kogtSdhAECCHYpqL0SUHmILQi+HSSy9lr776Kl2skIHQX9SbOv3001ndunWzNjcRSWSFktT160AEkZ9NCaGsfWgORls1gBQuuuiivKsB2OuRRAdfhjxw+kYGNgbMNniE70OQm3hEqCmc6nCmo7Q4BvI00JRn9erVPLFv1apVvvtPhAWQAJzbSB6EukA5DhVZWN7HIQoYnbp+fYkgcrsx9Us9DKW5l39i0JEDehLD14BubmEDkT177bUXz4/AwNco4Y0IIJSl2G233SpyC7x8Lq89KJyfGyG06HmNzm7wkcBpDv8JIqgQShtGhzcvwDVABNhZZ53FrwURRc7RP3XthhFB5GZzolyHCBMDBspVYzMyRShlAmz46AstRqNGjfjA9902Oz8bnBtBqD677noAQolAZaBOEwr1oT4TqrnC4a7K3g4DyLE48cQTuaJDyQ4iipwidjkSBTHcoCicNWLEIG+IML/cfvvt7N57782qjwFMPCAAJIntvffebN999+UDZSicIZ2ZbHDZXAM/6sJJHqoB8xRKfWOgBwSK/AXVA8KENm3acL9Qp06dKtqqqq4lEUVgiF34a0HMNimQwtzUKKK5ll9iUG14qFqKKqo4GfsFzEEoV920aVOeRYzidDAbyTH+8jDF+4exqZka/aiuke46mYhC+DrWrVvHiQI9ptFWFAojTECBiex0+F90RJGLHtsJQFlqtIpLZFPcCIIilvJEDCaTCjY0VF194IEHMs5LqFevHj/JHnvssTzyRkcMYshlJXThm84NLKiNTGcOcjNDqa6dG1ngEdVhp06dysuQwCQVFkR9K0Q/ieKARBShIDaRTQUx2rDgkO5Hcyu/ikHe2GAGGTNmDBs8eDAPYw0KqGB6/PHHs+OOO47VqlWLmz9U6sFUc8ikGHJFFG7Xz01dCIKQ/w+HN6LCxo0bx4sJhgE0GhowYAAnCj+RT0QUvjAsdZ36E0EEsxDJKZ0ntaAjhhdeeIH7GhCZExZADEj6Qv9okAVCUk2mpaDNSmFeSx1RqJSFTBTy1+g98fzzz/PkQ/gxggaU3DXXXMOT74SPwkTIRBS+EXmndUEMNi9ySkeEGFAKG4oBvRoQvpkroDcCom5gI1dlB/txSIe9ablFI3lVF07CUKkJueDhlClT2KhRo3j0WNCAXwitXo888khPyo3MTp4Read1QcQ3MCqjkSdikMMzZ86cyXMZxo8fzzZs2BD6+8PmA3t4u3bt2BlnnMFNTibTUpxOr35JWUUaOlWBR4TPPvnkk+yVV14J/F4h6e6OO+7ghOE1QICIwhWRLscRdYKgTOk8EcOyZcvYU089xRUDkryCBjb8HXbYgfsYYPOGOUOEtWIDQtazn3DWfCuHTNSEl/vilSichAG19/TTT/N2rUjYC/K+ITP7hhtu4PfOj3+CSEKLyGZaF0R4MwMxUFe4HBIDNhaU4H7ooYfYtGnTeGmJjCZVaiNAPSBEJuFRDGTzIo8BQ/gT5A1F1QjHrSJpXE+rJvLwmnNiIgrxiF7er732GnvkkUfY3LlzA3v/6M8BkkAHPPgnVPeHiMIX+kaxG11BRBdPEfs334H8DgFvRCpiWL9+PRs7diz3LSCk0q85CIlsyMpt3rw5z1+ACkDfAtNmqGuPqVILSYme8RMV5eanwNcyWWDMnj2bDR8+nOdWBAX0yx4yZEhFVrZXsxORRBXAxIT8iDIiCPeFAnIgv0PIxIC6QMhdePDBBz3XCMLCbtGiBe9D0LZtW3bAAQdwc5Db31QRg5MgBOFQ/H3mZKFTFTJhQEmAKODYDqKwIO4TEiQHDRrElQWZnTJGaep6tCKCMC8MyncIkRgAVFUdNmwYNyWhoJ4bkDSFhjTITUA3M9ieMzU9Of+vUxLZ9k9OAmGYAgvEo0pRwHSIx6+++ordc889bOLEiYEQBbLhoSaQ7EhqImNEKj+iIGKLoJj9G7VEyHITUX2NjOehQ4fyRYxS1SYgQQptLbt3786OPvroSiYjrwSg+5kuLNVECBQV4+8Q4MVHIQYin0AUkydPDqRo4Mknn8xrcYm6WV4SGokkKgFRTSVEEJUnOdVZCnjDEI9IbEOMvJeMZ/gPEFras2dP3jvBz0ZvUgpeTENeTpe0kfi7915NTxiopXXrrbcG4qNAdd3777+fHzJESRS3/BW6vxUoYxGp1xQlgqCQ1oBVA0ZJSQm77LLLeIlp0+keC/m///0vzz3wsmH73fT9bPi6TYI2j8xVhY4oVGQxY8YMnhgHwsgWCIlF7oQIW1b5mIgklIhE6GtBRCY3ldII8OSIAaWAejrPPfec0YzUq1cvXvIZOQh+zUBup3+viz1q+Qu2Hxq8EAX8FKj3dMstt2SdR4G5hXwMZMQHkdOSIOS9FEdBBCYzTEtLGIW0BrIBYHEj5v3GG2/k7TBVQNw6iOHqq6/mGcvODdkLKfg5+flZ7LQx5JYoACc5yF8jBBpRboh2yyYzG42KEOV0ySWXKMu1h9XDI+aAialuPk1NUSAIKIcutJwzX/RisaM+0jnnnMNNBDqg8B18EUhiU232fpRDpv4BWvjRUps6RSEPqAjMG6iKbICS7g8//HCFA1ulKMjkVAkTUp+/ayIJgqKWglMNjz/+OK+8iUglFZDQdPfdd7NDDz3UlRiCIgUiAvuIAnW5rrrqKvbtt99m/D6QVY/ETLnGFpmcjMhbVFNBHicrRS1lqRoA9DhGkhKSnlRA4hIcjugPjQXohxDCMiMR4kMUsskJfgk8oq0szE4ImUYl2UyAznUIhT3zzDOVpVWIJCqhjOUpqimfBEEJcVmalGbNmsV69+7Nli9frnwueihgEdeuXVupGLzkHxApEFHo1ARUBDrQoYRHpujbty/Pwdhyyy0z6vORIOQlga4gTxOzZVo9EDIgByzOO++8k9uEVQX1atasyUspwN9gMiNlQgxECsmYZyqiUJGE3FVQZ950A8yeMDntvPPOnvwSCZ6DrXLdOyJfBEG1ljwuWucjFiFiy9F2UgV0YENIIcoemMpY+CEGIoVkH0hkslDlTeCQgvLw/fr1yzjJDtF06I637777aku8e1W2FiPntZqq5WES9iNyMC9S3eJctGgRL5CnIgcsKoQRolyCIAdTiQNdeKFzARI5JAdeamPJJ3zRIxxh03vttRd76aWXuLJF7S6/QK9tlHR5++23OeEIf4dMRia1kxC0TO+fdioIynnI7ASHgdBVtNxU9R5GSQx0fEPHL6+qIUmVUQnBz0eVmhCb+sKFC9kFF1zASkv9W0OQL4FCkvCt6fqCJHzO5jQ3ItcKYiiRg//F+OKLL7LOnTsryaFVq1bcWe1GDjrHH5EDwaQonF+7KQmMxo0bs6lTp/LSLX7n1F9//cUuvvhiHpItCMeZwCer7AQqicL0PmqXgqCch8zIAVFIyHhWLYIuXbpwfwMiQLwoBlINhFyrCXQmxIaPEvN+cf7553OTFVQFhcFWQU5yI3JJECCHYlpq3hYeFheIAQShAk5nt912m9bHIDfgcZ4AiRgIYcxXZ7STIAmEYZ933nnsvffe8/33UDocpWNQN8zpvE44SZSkPmsHK0xM6f7SRA4eFxsWFghARQ5YHEgwQoVMEzmYYsmJHAhBm52c/gLZ7LTHHnuw8ePHc7+EX8DxjfLzSMiTTU7OENwEmpuK0/tq/BVE6oPAMV1Ey8udHBBXDmmN2HInsOBQxwa9GlTmI2oYT4iSmnDmTGCDf/nll3k4rN/Cf2hx+8wzz/DGVaQkKlCW+px1Y60gUhNlEJGDd+WAzFIVOcAOi0glIgdCXNSEUBGymoDJCA5s1GPyg+nTp7MePXrw6rKkJCpQlN5f46kgKKzV36kLEnzkyJFKcnj66ad5JJNsalKZlJyLlYiBkMt5bWp5Knph4xH9SmA6+uijj3z9HfRER48TKAlBQjolkZB5H2rYa9gKoh+Rg/uCwrjiiiuU5IAF8OSTT1aQg9O3QLVrCFFSE6qkOvG12MzxuNtuu/GETygKP0Cm9umnn859Es4QWKeSSIiKKGQh1rQLbfdI3ZyitHoguJyybrrpJu50Vi06+BywINyUA5mUCHFQE84IJzxi7qNgnx+ccMIJvM+6KrrJFLlnMaAiyuKkIAbSUnFfNAjhU5EDgGQhdH5TkQPVqSHESU04VYXsl7juuuvYfffdx//vFa+99hrPr0BQh9Mn4SzLkRAlEcp+G8ouQupBTQ7O09TEiRO5xFZVZL388st5hUyn84+UAyGu8148qnpM4HHSpEk8X8JPjwm0MBX5QKpWpglTEoGriLAUBKkHF3KAcw6mIxU5nHrqqWzgwIGVNnwiB0IclYRqk3b6JYSSOP7443lZmW233dbz30DjIpS215XkSJiSCHzfDXw3IfWgJgiZHFAauXXr1mzFihVVfr9du3Y8qQi2VV3SG5EDIc7rQF4PqlyJOXPmcGW9dq23wBzMe7TcxXME4eiCNxKwTgJVEWEoCFIPhkUB+dy9e3clOdSvX5899dRTRA4EK9WE81GXM3HQQQdxHwOqFHtdZ/BHoJSHs1S4KkeCVESeFASpBzM5YNKiBy/iuJ1AFzgkAzVo0KAiCsN5CiJyINiyLpyqWhXh9MUXX/BoJa+F/nbYYQdeHLBhw4ZKf0SCciQCUxFBKwhSD0zd61dUZlWRAyYzsqRBDnKRPS8SmciBEEclIasInZpAdzmYW7HxewHK4SPbGqYplYpQHdxIReRIQZB6UKsHMdDY/YgjjuBheU7ceuut7NJLL9UmGVHlSkISVLaunemnn37Kunbt6tknceSRR/L2pc4ciYRFNgWiIoJUEH1oyqtNSytXruQRSypyOOmkkzg5yCcqN2IgciDYpCZk1ayqCrvffvvx6Katt97a0+vCzHTLLbdU8kfIEU4mtW8RAtmPA9llqOaSnhwwQWFHfeONN6r8fpMmTVhJSQmf+CpHtM7vQORAsH3dqKKb3nzzTV6sEl3nvJAPzLZoqiVHNiXIHxFIjaagFEQfIge930FFDig2NnbsWE4OumQ4Iodkzycvw0YloesvcdRRR7ERI0Z4WgO4Nkii+/rrr6uQTUJqNhUGoSKCUhCJ7/egsqfOnz+ftWnThm3cuLHK7z/66KPcoaYrnUHkQAeNTDZZm5WEMBfdf//97MYbb/T0mvvssw976623ePKdKkfC8vWVdb+IagHc1D5EDlUn9p9//slDWlXkgPpKIAcxKb04ookckkUOfhWEDYrCTUmIzR3dFtE3xQu+/PJLNmDAAK2KsBxF2XadC8LEdCYt6qqmgRtuuIF9/vnnVX6/Xr16FZUr5ROMG1EQkkUOXohCRQxx3/i8JtRhDXXs2NHTa6KXCpzcCS0PntX+XJDlpG6ZephLC7vyQkZGJxqbiKqSAqg3A0fbAQccoA1nJdOSv4Vqk2nl119/5XH/H374IW+oI/o5t2rViodI77zzzlU+s605MqYQWGFqWrNmDfdLfPXVV66vt/3227OZM2fyA5qqsJ/l661V6jOV5oMgRrEEh7fqSmmAAOAccwJlja+55poK9aBqqpJUcsj29Bbn6yTs6ijQ+Ntvv6mlfmpu4MR84YUXsmOPPbbKXLGRKFQkIYhChLAuXLiQ96sGubrh4IMPZpMnT67Ij1BFNtl08JAwOvV5+mbyxGpZ3LxAvOQ2bXAYSHpTkUPLli151zgnOZhaJSaBHFQmEZNZBb6dDz74gDv5URJ91qxZsTcPgBQQ6aYjB7E5wtmKvJlDDjmEd1ZzVi9VVTCN87XxUgm2UaNGfC4IFWAClBmiCp3+iAT4JPqk9+ucLux+5QlGalLxkTrF8PHXX3+Vz5kzp7x69eqYZZXGFltsUZ7a1MpTG0D5unXryn///ffyDRs2lKc2u/KNGzfy5/7999/8dcTrYiTh+jmvoxi4HmJ8+umn5bfcckt5u3bt+LXENd19993Lp02bFvvrJX/+lIoo32qrrarMH93o2bNn+Y8//lieUq18Lm3atKnSXLJlPsnXCJ8NnxHrBp8baymlHsqvvfZaT9cspR7KZ86cyZ+D5+I1dGvQMvTLNUEsIXL432aGBXrggQcqJ+WNN97IyQEDk3L9+vUVExOLWrWgk0gMMiksWLCg/Prrry9v0KBBlevZrVu38pUrV1qxATqvw+eff17eqlUrzySx5557lpeUlFQ6cDiJwkaSwGfEZ8Xnxppas2ZNeceOHT1ds6ZNm5avWLGCr0esRUGulh/SluSSHIpJPVQ+0Tz44IPKybjPPvuU//LLL1pywHOTQA5eiAHXYurUqeUdOnQoLygoqHItt9122/LHH3+8EqHGfUGrDhuYIwMGDCivVq2a51PxY489xjdL59yyZdNTXSd8Rmzu+NxQ5t988035rrvu6umaXXPNNeVr167lzxPkqiIJy1CcK4IYReTwv4m6fPny8po1a1aZhFjg06dP92Vasp0cnMSAa4DrMWbMmPIWLVpoF/RBBx3EVYW4ZraYUVTzSZhQ3nrrrfI6dep4VhMDBw5UHkBsJQl8NkES+NxYY6+99ponYgWpvvfee0pTk8UHtlG5IIfC1FhDBPG/xXz22WcrJ+G5555bybTkPOHZblrSqQZx3XANnn/++fK9995bu5A322yz8uuuu45vAPKGZ5OdXTWnxMYHU0iPHj08k8TVV19ttUpVkYTwR+BzY61deeWVnq4VTMKrVq1yNTVZBOzbhWETRB8ih/8tZDifVSeWWrVqlS9dujSxpiUdMYjrNnv2bK3PRoyioqLyd955R2lbt4lcdeYTeeMbO3asUqWqxqBBg6z2c7k5rWHSNalReQwZMqSSqSkByt5X5GkmYa6JzJwuV4TA4XsItXQmxAGpRcq7xDlj1VVf2xbSWq4IsSxPhxGiO9j555/PDjvsMN57WAdU7URYIkI6vYRA2gBTMx2EtyK8t7jY3YyMuffMM89UhL+Wa4r7lVsQ/qpqOrTFFlvw0Fc8uuHmm29mP//8szbktdy+0Fdf+3c1nwu/KPVQzBIMebGNGzeOZ007gUQ51FvSTWKby2iYyAHXq3nz5mzkyJFKUgVQ3XbMmDG8Cf12222XiDml6vWhiv3ffffd2auvvspuv/12180PlUxBKOUWV4GVr5ez+iuK9Hkp6IcmREhQlIlBlRdh0TUrTu/j3q6t39yH1MPQJKuHcilhC5vd4sWLq0xWlNNA1qYuU9rW1P5yTQ2hlOxnl112GS9vbgKSCUEeSH6Sr5NbQqEN11BHrM6NS/wfdb7OOecc3rdZh9q1a3MVttNOO1mZrV+uybQW5TjQoAvd5UxKVV6zBx10UJUMa0vXav/U5xgWhokp8YX5xHjssceqkAOA1oiCHEzKISnkgDo5rVu3NpIDFiFMdW+//XYFOSSt1IjuczrrdInNq2nTprzZFJSC7rk//PADu+iii4zF/Wy4ZqbCfihhsvnmm7vO3auvvpoTiq5nRFLNTNV8bACQJS2Tqh7kiYKSCHfccUeV34XsHzx4cOJMSzpyeP3119mhhx5qLKaGYnSTJk3idnN5IevszEkiC+eG5xxbbbUVn4cwO0EtqDBx4kTeWc1EDuWWVH91qnRBpP36uScRo+91giq+tvRqZvKjIC5jCYeYKMOHD+d9pp0466yzWJ06dVw3N1tPx/LiGTVqFOvWrZuxvhAcr/DhtG3bVquydL24bb52KvOZ0xErm0FQxA/+BlxvFVAkEo5Ym4jBRBhOsrjqqqtYgwYNXJ+LOmobNmyoVN+q3N76TJ72cz8E0YXUA2OrV6/mBOEEOlZdeeWVWmKwtVpkuaKi7UMPPcQjlSDZVUDpZUSZwN9QWFiovE5uRGHTgUO3CZlIwqksdtxxR27Ge+KJJ/j1lQFHLEjC+XdtVFwq5QWlddddd7m+zvLly9nDDz9ciRwsblHqaT+v5nEiQ44UsQRDTJBhw4YpSwtffPHFrFatWsYQPBtPvs5r9NRTT3GHtG4RwT8ze/bsSu1WnSc+LyalOIZsZhJJpCIJnckJA9cVjmmY9mQg7PXjjz/2fD1tMzXBWd2pUyfX14HPYtWqVUnwRRR5MTN5VRCkHlLAxHnwwQer/G6NGjU4QZhOwDaaR5yL5t133+XKQbWY0PwGXfamTp1aYYZTEYIboZpCD6O4iE0bjNfNx6SwnAQB01NRUREvH37LLbfw3gfibwn/WBKgukZ33nmna3gwDn+wEOjCXpOmIrwSBEUvpQbIYd26dVV+jk1RmEpM6sHm64PuXkhu27RpU5Wfo4vXtGnTeLMkOKKdkTlOonAj6riQRLlL61CTulB9Dqea0F1HPIKQYXufMWMGa9KkCX8OQjnff/99a+ejm6kJ81Ac5ExADg46+pl6bFgC1329modJDhmSqOgllV0dJ4sRI0ZU+V0kcyVRPThx7bXX8rBKJ8444wy+KR144IHazc2LaiiPUV9m3Xtz5jPoImZMn0Ply1KZ6cSmuP/++3OTE8Jd8f27777b6nnolmWNcGr4a0xAV0ihIiz3RbhGM3lREMVJVw8A8h5wSnbi7LPPVpbUSFJo5pIlS7jDWcYOO+zAnn32WfbII49wEnWaQtxIQrXhqpLGdOGI+VrAuoQ3JG4h5LRPnz6sffv2vG0oyjyUlZV5Igo/ZifnQHY6Njz8/blz57JFixYlZv065xrMwSKYxARk80NFOKOZLFQRxdlO+PFJLMgnFwNDAbDatWsrO8UtXLjQtRGQraW8xedCcTj5uqBxy+LFi3mRPVwPeeB7ovieuE7OIX6WIp7ySy+9tLxhw4bl22+/PS/ed+qpp5a/8sor2gY5+SxKp5o7eF/z58/XFibcfPPNy/v3788b3uga/qiq1vrpyCeP1KZXPmPGDOu7F6oaDImy4Cjm56WMekp18ftiec+I8dkSROIrtqJJjWoCnXHGGcpeD0npEic+V6dOnSoI86677qrY4HVDRQpOgpg8eXJ5YWGhdvGiRDhq/5s6qeXy2uvIYcKECbzRkdtm1Lx58/KvvvpK2y/EjSB0RGEatre31ZUFx1pNKVvXe7LNNtuUf/vtt5V6RsiVmG25dhmbmFLPTVz0kspkgNA3lcRHmQOd70HnOLMRcEyjOBqS3mDjdYtOMpmVcL0/+ugj1r17dx6/r8OCBQvYCSecwM477zzuH4IJx2mq0Tm5c+F/wBg/fjw7+eSTeS0qN6RUBk94Q9a522dxs8GbzHWmxM0k+SRSSpQ7rU1IqQ3usLY9osm0z7v5INon3TmNejefffZZld/FYm7cuLF2YSalLARw/fXX800dxfa82sV1mxSS63r37s0dhV7w9NNP8xLYsKuLjVVnNw5rITud0BgzZ87knyN12vT8OnDyd+7cmX333XeunyUTQtD93HZycF4HHGAQTYcoLzeAIEAUTrK2DO0zJYjEOqjFQn/ggQeUP0doq9dCfLaTBTZoZKtmQwzimmNBwnHrB1ATSIRCZVNsrPIJPGySUL0+NnokrG3cuNH36/344488XBjVgmWS8BqZ5eeQktTaVoIkTjvtNFcVgcoJzz//vKuKsNVRXc0w8YtYgsJbVQsdJ7kpU6ZU+V1MKmxIpg0xSQvPdFozkaiTHGCqEmGYfoGIE5icUGFXZ6Jx3uuwDhUXXHCBsvaRVyDSCEldQTSxSVo/Ei8qQphAoSL69+/v+hqIxHMj65gThTbctRqpBz1ZoK4NJoYTZ555Js9YJfXgfTPysilNmDBBmUvhhyRgW0Yyo8pEE6Z6EOO1117jVWyzBfxeCxcu5J8jzM+QpLkpP4pwa6iInXfe2fjcb7/9lk2fPt32rOpivwSRGP+D6gbjNIuKpE6gdMHpp5+u3PyTRAZOUsj294V5KVvA3ATbstPMFPaiFrkO6E4WBDD/UMrbTUUQYWRmYhIDplGYi92Aw6JqLlnUda49KQiPJgKMyZMnsxUrVlT5HTgR0aHLzRmbVPWQ6XVHJc1Zs2YF8l5QmA6lPWR/RNCnb5V6wN80dXjzCygq+GOEirC8iU1eCAMqAp35kExoAhQEEkJ1hJ0oBZH06q246aLJihOITFGRA4G5EqbbZhjkYkPdJzh6c1kqQTdnMgWIAdVxLd6U8qoihC8CpTcQGGACrj3KqXsp+xJTKKu7Vku6elBJdkSSoBqmE7vuuiuP2PGyERJpqBeoTrWprnc2QNgrlIToTxzG6VueM2g0E4TvwYmXX35Z6SC10AaeV8I499xzXZ/z3HPP8cg0i5VcsVeCaJFU5SAmgso5DQeoV+c0wZ0kxPWGvR09IoIGHL3IQwjTFyFeC+8fJBE0li5dys1Wlsfh501FCCWBRM82bdoYn4/INJSrt7gdaQtSEB4WPE6eKoAgTMlIhMyu97x58zxlG/sF7PdvvfVW4M1fVM8Pg+AEULLbVJSQkDlhyCQBX4QXFaEyWVrirHZXEKkPV8gSkv+gMi8ha1qVOY2s6X333Vd5AqFopuyAhvFh4YUXXtDmRASxkMXmAJILC3PmzNH6IIgoMlexzjXcpUsXHoBiApzVUBJe+nfEEC29KIiWSZw44ga/9NJLyp+fdNJJSplKxJD95lpaWhra30CTHLkRfVAnPufzUUMpLODAYnKMEjInCpkg0G0OtbNMQCkY+IUsDXXF+y92I4jipE4abCIvvvii8mfdunXzXTqCkP/NFeSAhkVhlEiQX2vZsmWhfQZk9CMiy619KSFzFSEimnr16uX6/FdeeSWSvUgCgitBJMJBrTIvocQBSjU4gZaNDRs21E4wIobs8PXXX4f6+iCIMOvnoJGUqtVqkAeX77//3thFjxAMUaDgZNOmTY3Pwz6BnAhx6LDsfrRwI4jEmZjEzUUsvgrHHXdcFTlKhJC9chCtXFetWhXq34V/QNem1O+iVtXgyabuklcgaZPMS+EShVjXbjkRwLhx4zy1v40hWmoJIu2gLkrqRNERBLKnTS0eVScSgjfgJBY2UH7DTUFks6hBcmEDf4OIIVz1IIYwJ5uA9q1yEqbu8BBDFKV5QKkgEhu9hMJoKls4kuNatWqlnVhEDNndhzBt9/LpGwlOYiEHPY/CyH9wQu6PQSQRnnrA2GOPPdjBBx9sfB4CBxBGrSoBbgFa6giiOImblKi9pMIRRxxhLFNNyG5zzaZ6q1dg8QozUBhmGq/NjbKByAYnhKMinGqia9eurs/HnqEzW8b8XhXrCKJOUieLqu8DIPo+6GQpITvkgiAAOJLDWrxhOqgF0LvAjWwJmROFKicCkU0moDyMm3KI6b2poyOIoqScXOXH3377jfdTdgJlNTp06KD1PzglKsH/vcgVQWTS3c3rZ1CVZQkabtVGCcESxe677872228/4+9/+OGHvG+6hV3minQEUZxEM8c777yj7B2MkLcaNWqQarBAQThPc2EU7QsThYWFvkwlBO+koFMSnTp1Mj4XSXOikZCtuRDVpA9TlMQJgpuIbFsV2rdvb1QNhOzhJuODwpZbbhnaa6NcdNhAsAQht0ThRhDicOkW6hpHohB8UE0lK5KiHGQFYSIIlYKg8NZg4NbuMSjISjBunwFdDHfZZRc6oOSIKMRo3rw5NzW5EYRl5qVKfFBNJStsJwYZKGOAnrNOwCmIUDdTvgMt1OyBjS8XKgWbeBikjtcJmyCKioq4P4zmXPjqwUkSRx11lPG56IOO8HgL62QVOwmiRpImhbiJJSUlyp+3aNGC96s1TSRC9thtt91C/xu1a9c2RgFli5o1a7Lq1auH9vqoIkxJmbklC3G9O3bs6PoctMq1MKu6hpMgElnF9d1331V+v3Xr1lVOE/L/CfEhiEaNGoV6//B6tWrVCu39I1gi6T3P80EOGO3atXP1k6EXiFvzoBgSRUsnQRQlTUGYCEKVSalLrCFkviD33HPP0P8OMuHDKM8ubyhhmsowF0W1UaoFltv5if4QzZo1M/4eQuRz0fM8xyhKFEGobhrshyr/A7D//vtXmiiU9xDSLCwKf9o5fUlhbLBhEQSUiWxi0r1vmo/BqAengsAQfeh1WL16Nfvmm2+simKqRBBJC3EVNxCJLirAZg3TB53Uwl+Q2ADDjDDabrvt2IEHHuhKDpneZ/G8sMJQkckP9SAGqYjcEYVA27ZtXZ/30UcfWVdtF7xQLQnqQQcdQSCDUneioFNbsIsRAw3jwwI2WHQKkzdY0z3NZAPB98IiiBNOOMFIDDQHw52bGEKBmoC2sCrlEHMlkUyCEDcKrK8CIpjkSUKkEN7pDHBr0JIN0EIyFyfvMExMe+21F2vTpo3y/dM8zM38xPeQCCk3DFMBTYQs7NeRLIKQbxqcSripKjidUrQgwz2hHXLIIaH8jQYNGnDzQC7MM2FEY5155pk8fBY5EBjyZ6BDS+7mp5c5iq6IKPtuWT5EBUFYnQOhknlwKq1bt86VIChBLvyT2qGHHhrK37nwwgsrNlYnSQSxwcobSNDRWMitQH9k8Z6d750OLblVEgcddJDxOSjYOH/+fG0UU0yJooYgiETlQIj+0yrssMMOPL2eFmDuFiNMKUGbmWAS6N69eyWCCHKDdR4c6tevH+j7v+iii7iDXagHMi/lV0W4VXYFvvjii4r9xZKifS2rJfXmg+1VaNy4sXaSkKwPbwHCGRskbr75Zp49LZtmdAoikKNWjRqc6IJAvXr12FlnncXNS7L6Ub1/mofhqwd8b++99+bBDiZ8/vnnynYCOmtGHJA4J7W4QWgZqEKTJk20k4UWY/ALUGx4vXv3DqyyK0wzhx12mNZ+H+QGK7+myL7PakGm3uc999zDy7yY3jvNxdwdYAAUTHSLtvvyyy9tc1Qnx0ntlHw6goCCoFNabhcfHuvUqVOpe1+mwElv4MCBFeSgO30HZV6Sv3f88cdn/f4vu+wy7hB1kpscokvI7UFGzBuUPDEBfe11LUjjThCJUg+//vqrtlENIl9UE4VObuESBcYVV1yR1Wsh1HTkyJHcdp9r9YDRuXPnrMJd8fzLL79cSw6kIvJ7kHEruYGgF7Gv2FL2u1rqgxQmRTkIoDyvDkE7GwneTmcYCEk9+uijM3pNlNx+9tlneekON3IIo1gfBpoSDRgwIKPXOPzww9kDDzzATRl4/7L/gZzT0ZizXhI6bSu5AQWRuAimBQsWKH8Gp6YIV6RFmTuikB3IQ4cO9d39Dapv3LhxfAGLzdVpXgrSxKR6vvgM5513Hvd/+EHPnj258tlmm20qkZvKvETqIbcHGPl7MF+6YfHixVXIIM5mpkRGMekK9CEKBQuUnNP5kfHYCKEARo8e7RoxItC1a1c2adIkHtYKgheRS27JZUG/dzHw95977jlPYZHI0B0xYgS77777uFNakJtOPRA55NfEhMquGCYsWbLElmquySMIccN0BGFKdiKndXjqwUkScPZOmzatouSJCqiP8+KLL7JHHnmEb7SycpAVRK4q8cqbON4P+pzD3LT99ttX+V0Ug7zqqqvY+++/z0uBCGJzKh9ZWRHyqyTEvXUrubF06dJKe42KJOJEHGiDVZikm46bs2jRIleCIPNS7hejHOaKcuvo1YFa++jYBecf7PPwEaGJC3IFxHN0I+zTN14L80l+FO8J5iJEU4EIUPPr+++/5ySADQah1PL70713Mi1FD5h3IHYdli1bZpWCAEFY74Nw3ijIQBX22GMPUg45JgXdBit+jjIcKFgnGrKI++nc/FUba679SOJv472KzwCiaN++vTLkUff+iRyiaWbCAEGYgIOAc88R9z2O96+6zTdWFUGA5h66GkyCIGhh5pckAHmzlzdc3Qbr3GxVKjAs05Lz/Yv3DHOR/DPnQUX3/qlBVXRRt25d48/XrFnD/vjjD7bttttaoSKqJ+nm4maVlZVpf44YdlqI+SUL58Yrb7Cm57iZk8K8rzqSEO9ZEIWK4JzvnQ4o0Tq4OL+nsjI4gU6ViKyzxcSUKAgJqEJYTV8I3hejKoJMZ9P1sqHm0rykMpd5sUeblA6RQ7TgpWrvihUrKvKpVLkQcbqniSOI5cuXGxUELcz8qgeVucn5f5Pq0P0s1yTh3Azk7+neG4VXR3duinuBCDRhQtRh5cqVroeCuCBxeRA6goAZAKW+SdpHgyhUZheTnV4VkpjvzURX3sNkFsv3+yeY7y1CkcU+oQP8nE7ENVkuMQQhbo5gdycKCwuVMedUuC+/m6yJHKK8sXr5DG7PIUTnwCL/H2Vd3AjCmlpMSbrZuGk///yz8mdIbiJEkyhMZBD1kihu5EYlXeIHN4JAMVDnwVR3YI064INonwTlIKBTEG6ykRDNEx2BkGtF6HaYFGH05IOIIXQEgY5gtBERCAQ3ooA52gtBxE0tEEEYCEJVM4cIg0AgOOFGEEiUIx9ExKFKdd+wYQNbv369K0FQFBOBQNABDalM+PPPP61QD4IgZiTlxsrOIydEajyBQCCYLAlbb721Z4IgBREj6GowAajHr5sQBAIhmWSgghtB/P3330QQccRvv/3mmyAIBAJBJgy3veKff/4hgkiKgiAQCARZTaCvhwmmMhxEEDElCL99kAkEQjKBchvGTbWaPdsqEYTHm04gEAgA6rYRQVgIxCfr4CYbCQQCAXALXXUjECKIiN7Qv/76y7OCoOglAoGggpuPYYsttrCKIEqTQhKbNm3S/pwIgUAgBEEQNvkzQRBrk3JjTQqCCIJAIHiB6aAJ2BQRWY1urF5xEAgEghNumdIoxWFLuZ5EEYRJQRAIBIIXmIJdAJvK9iTGB+GmCmxKjycQCOFBV/BTwK3aa6wIIiWBEuODMMk9m9LjCQRCeIdLU8keoGbNmlV6j8dZQSQGpgQWUhAEAsELSbgRhNyd0hYfRFnSFYQfBzaBQEiWapCxdq3Z6OLWszpGxFGWKIIwKQg0EyIQCAQ36LpSCuy6665WqAeZIBIBE0HIjicKcSUQCDpV4UYQu+yySxVykH0Ssdoz04+JiGQy1UiBghCtSQkEAiETBQEHtRzmGnMVMUMQxK9JuLGmGim60DUiDAKBIIBcKhNB7LnnnlXIQSaJuBFGonwQphopbpEJBAIhuRDWhR9++MFYi2mvvfayQTkIJMtJbeol+8svvygnBIFAIAgsX77c+PN69eopFUNMCSNZBIEaKV4JgkAgEJyHxLKyMleCEIRgQaLcvwSR+gDWEwRukleCUCkHUhMEQrJJAo9Lliwx/m79+vVj7XNw7JmVwlytJQlxkxBhoINwPBEREAgEHUksXrzY+HuNGzeuoiDiqh7wTyIIQmCnnXbS/mzjxo1s1apVpBgIBIIW33zzjfZnyKBGmQ1VDoTp/3EhCOtzIXbccUfjz5cuXVrJOS2+JrIgEII/ketGlBSD83tff/219jlNmjSp5Hdw+iFipihKnQRhfS4EOj3VqFFD+/Pvvvsuo4lDIBD8kYKX34saEMFkCodv1qxZnBSCG351EkRJEiYp0uCzIQgCgZA9KXhRDlFSExhffPGF8feaNm1a8bVTQcQQJU6CKEvChN199921P5NNTGRaIhCy31R1hOAEurS9//77/ITufF4+P4OM+fPnG3+/efPmlYgh7jkQ+Ke6xHhlNm2IuCmqzyOnwjvhtC/KE9oS2Ugg5HRTVW32ePzkk0/YtGnT2Keffso+//xzHh2Epl2XX345u+eeeyqtuXyuP/k9z5s3T/t7CKFv2LBhnAnBuX9WJghJVhTbNmllRhep8CosWLDAVfISURAI/olB/B+kcM0112hP46NGjWKDBw82Vj3I12cpLdXH8bRo0YIXA3VzTsdk/ygRX1RTyQqbITIdVVizZg1bsWKFViYTCASmVNmq/+MRdYvw+P3337PTTjuNHXvssVpyQC/nSZMm8WAS1UadT6xevZotWrRI+/MDDjigCgHEOGGuTEcQS21UDzKQ6WiCrCJMi4BAIGJwJ4Y///yTm4wQ4fPKK69oXw/k8Prrr7ODDjookp9zzpw5xnV/8MEHK/0PMcVSHUGU2D6xGzVqZPw5IhWIAAiE7IgBjy+//DJ33F533XXs999/174mksumTJnC9ttvv8jmQXz44Yfa30UjsgMPPLDiQGoBUZToCMLaZDlxs3BSES0BVZg7d26liU9kQSC4E4M83nnnHdauXTvWo0cP19pFRUVF7K233uLkEDVikD/T7Nmztc/ZZ599+L5ikX+yVEkQqQ+IbtxlNk903MS9997bSBCmDE8iDELSSMELMUAxfPDBB6xTp07sqKOOMp64xTqETwIbr1iPUd1gN23axD766CPtzw877DClcoipg7oszQNKBWG1ihAQGY/Kq1NWxn7++WciAgKpBQ1ROE1JM2fO5MSAjXL69OnG14Y5pmvXrmzWrFnsySefrFJAM0qbqPi88D8gT8MPQUT1M/lRDzqCmGeTWlD9H3ZRE8Tpx5TtSQRCSKJaEMSAnIUJEyaw9u3bs8MPP9yVGNDut0+fPjzvYezYsaxly5YVa1KXVJbv3Afx9dtvv6393f/85z+sTZs2ld5zzP0Plfb/6opfKEmNgTZNfmfCzf7772/8/ffee4+dcMIJ5IcgWE8Kbt9zmlaR6fzUU0+xBx98kH377beufwO2+b59+7KLLrqI+/5kIoCacCOJXBKFTjWZCAJRV0iSsyBySd7/9QSR+pAltm+IiGTCTV23bp3y5++++67WDyEytClhjmADIXghBVGH6NFHH2XPPPOMdt3IqFu3LieF3r17s2222UZZ5dRks4/K+vr111+5iUmHjh07Gj9XvtVQBofpEjcFAcAO1dK2BSJuGk4uSGxBtIUKyIWAH0KOdooTaWb6Xon0kkEIXkkBRPDSSy/x7GY3p7MAzC2XXHIJ69y5M88sVple/CiIXM9Jp0kNmd9///239vePPvpoK4hB2veZF4IosZEg5JvWunVrLUEIWdmzZ0+lHTYKNWIyJQbTe3Y+nwjDXkJQmVSAv/76i/sToBQmTpzI1q9f7/p3URbjlFNOYeeff36VABBd6QkdKeRrc9VdOyTvmVSS6AFhSYG+Eq8EYZWjWnXzZceSClgkCMPDKcdJElG8+X7KJZs2EvmzEWHEWyl6JQWckBFVhEzn8ePHc/XsBdggzz33XHbGGWdwX4OTFJwbv586Rfmca2K947pMnTpV+3uI3HJTQDHDPD8KwkrlIAYUBCIQEOOsApJ3cJqCTFZVdY0SUYiFjggTQWhum4TqvavI1EQYRBrRUoZu35cPOSiBAZUMlYDhlRQ233xzbj6C47lDhw58vulUgIkodKohCnNKXCeQptyG2Injjz/eqIhiSBjeFES69HdZ6ssiW5UECoIhAgEOaRUQrYEkHjihdM7qKBHFjz/+yCvV1qpVi/tO8Ige3Lvtthv/PpqpI7RQtF1VEYHXz0KkEX0ycBICsGzZMvbGG2/wgQOQF/ORAIpcghR69erFey+7mYZU6iAuxCC+RhivDlhX8GO6OadjhDJR4tuLghBs0sdWFYGTD+K3dQQBvPbaa/yUFIdwV4TmIjb9p59+4kP32ffdd1/+uY844gjWtm1bTpQyeToXtZM0dCY7N9Ig4vBPBNmQAQAnM5LYoBRgMv3yyy99vUdE+iGpDaQAk6xwKuvMQ15IIQ7EIMxLJoLo0qVLhXqyJMRVaTUqMFw0kMMomxajnOyD8fHHH/NNUgecwBHehyQfmJrEwMRwRmDk+7NdeeWVbMiQIb6eu+WWW/IqlMXFxTzhCScimN1MJ0O3r7NZ+DYRSCaHCb9k4PwaIZk4KMA0AmJAUpopAkcFzG/MBwRoIBdIHCB0JiQ3dRBlYjDtDyBU4WNQQdSPUu0LUdkbfKJv6r2O9qsgrDMvyYzfqlUrbo7Rnbh/+eUXVlJSwmvLRN3MBKLDxmCK2XYCdugZM2bwASAaBYRx6KGH8gHC2HbbbZWLXr6eJvXhhwj8bKr5uN5BKEi/jmUdGUAtogMiDjkIQUW7TigEbG6ZrA9UIz355JO5YpAT2jJRCyYzUtQOAqrwXowXXnhB+xy0DIC5Ng55HKEpiPTFQmlTK8JdVXVksMguvvhiNnLkSO3zsGiQICSfFETnKJWDLt/yGMUGH3/8cfbss896SmgyoXr16twkdcghh/ANBBnoSDIU8e2ZqAu/Po6kmI1MgQX4P6qiok0nCAGPUAemEtpegE2uW7durHv37hWdFk0RRl6UhOkeRjn6T1YPGzZsYHXq1OGKTIXrr7+eXXHFFXz9q9RDDImiNPU+W2VCEENTD/1sNjMhzhmnJh0gsXEyQ1GxKJqZdFEqcLIjlv2xxx5jn332WWB/b/vtt+cbixhotQjSQHSLH3KIi1kqV6YiAZA6ejTjnsmPus3Kr/kIZI/oG5iPVKSguk9e1UKciMF0cMThCnWjVMCaR+tR9LbXEUQMzUvDUu+1fyYE0SX1MN4WU5OzPDEGzCyoSb927Vrt8+6991521lln8RO1c0JE4bSgksnC1IBHmB9QOXPcuHH8dBQ04KNBlFTTpk15bXwkD2EgTt5NbWSqNPKVYZupKnB+D61tFy5cyM1EeBRfQykEGQwBEyECLZDxi/BURLd5VQW2koLu0CjWDXwPuvpLCPB48cUXK5FD1PaDDNA19V4n+CaI9MWzpjCTcwPFgJkJGaAoQKYDqr8i69ppZoqaitA1cBEnI6gKkMRzzz1XEfUUJkAcCI+EzbZBgwb8a5AGCBmnV/zcKzGYrm1Y191vZrL8Mxw8li5dygdKyMtfgwyCUAQ6QNGBEOA7Q/QRAg+yCUP1E5YaJ/OgyqqAvtMwq+p8OWPGjOEKTKx/+TGufogCwxv1QhBQEF1sNjOh3gpuugnIqIQDN4qnBp2ZSUUSYuAEiwbxb775JndSZ2vPzmBS8nh6SPU99tiD1a5dmztHMfC1yOPAI4gkCgoChAqluWbNGt7EHsENyD8RocXi/z/88ENOe4rgeiEKDQMRSLvvvrvWVOSmFvxEr8WVGFSHKrEXwL8Ai4EKmJvz5s3jhCvvAbJPMobmpQmp99o1G4KAMc7qcFdkTMNEgoWtw0knncTt+bKZKUoTw2s7SPmzi5/j88OuiigoJAfCJJWtgztIoBoofEAYNWrU4H4QxOhjIPIKAyG78BfBF4IFjEenynPec2TRIwwUzWBgekPiGIb4Go8gA0EIUGCZRAkFDSgw+BIw0KymYcOGRv+BGxlkYkKKIym47QVQfVC7K1euVD7n6quv5sMi5zSgDG/1QxBFqYclNpmZnKcGnAxvuOEGYx4BNhxEj8A0EtXJoUqWcib5CSWhIw8Am+ZXX33FI2bEgH08bJMUQU2OCARASDYULEhBFYbq9dErKdhgQvKzD+BrmJnPPvts5e/j0AH1gGvv5pyO2XWqq8qg9kwQ6YtpZbirODlg44NdGFE5JrMAyhgPHjxYqyKiFPKqIgyTslCRifyI0zSiuebPn18RXQPSCNOWnjTApIb+zHD2Yy6CFKAOnI5+HTn49SkkjRRMewAeQcBQ0iqceuqp7OGHH64gA0uc09rwVr8EgVDXoTabmTCOOeYYnoGqAyJCMIGwkJ2+iCg5qHQx9SaiUP1c9X3na8nROHDwwQkrRhgRU3EH5gv8LnDWw2kP0yZIAQM+GdXG7FctuCWsBREYYNseAD/ckUceqX0O9gUQt+x3iOLa94n+qfc6LAiCsM7MJB5lgkC549NPP9343AEDBrBrrrlGGdEUpUniNSPXRBA6FeL2muL/sOV+//333LezfPly/ghHLr4vD/gDbADmAHwkKOSGAecxBr6GIx6EABOlKGei2oh1m7fbxp+t6ch2UtCRg9gDTjzxRG1pbxTsfPnll5XqISrWgzDMS54JIglmJoyNGzfyOH5sZjrAQYpsZVRFjbKK0G3cXhWGF3JwS/zykhiG7yGCCtFBIkIIZis4yeEoFo9wJMOJiIGvca/gKwG5YOBrmAqFuUA8igXsXMziEfcO/iUxYD6UH4XTGw5wOMPFIwbmAhznO+ywAx/oiSB3UcvUjONHOWSrEpJACm5rH74FVHbWmZdRtA8RYjJBWOCcdjUvAdV9vOAYWwhCV5sJmwFyIm666SbtcxHJMmLECO7UjkOZX7lelBeTgqrvtooodNVbTY2VdAsQp24MlDewFSZScIseyrRgYtJMR37IQSYJhLXq5ib8Eu3atau4bs4DRozbi47xNG99XFxrzUyysxrhjLALm/ICcHpEZA/MB3EMd/PTac6PScmravDyt4LahIO6Npm+B79Z49nUtCKV4H/No/88qrLqIvSQNQ3fhGXqwZN5CajmY+LjxUptnkC4wTAZoKyGCXC+3nXXXZX8FyZzTBQ/p0rxmDpjqUw1uv/LQ0Wgpt/18nu6oauu6Wdk8/dV79/La+qurfye3O6Nl3tJ5FA1eu+OO+7QkgMKVKK0htt9iCFKvZCDLwWRvrjWRDM5J4282cMHgXR72Ll1wGaA8hto0i7CXm04WWRSc8ivKvBDnmGrilypllwoACICf+oBvV5Q0l5HEOjPjcx0C9WDa/SSbwWRxgSb1YMYiDrRVXMUwKRCWr5TRbiFh8bpOug2Mbc+vLoTuZdTepAnei+qIujX9/J7uvfldn3d7gPBnRxkkoCvUUcO8DvAMW2hevC1jxdkcLHfST0U2zR5VJnVUBFQB4iaMQG9F1BP36LKjqGc6rMhyagSbKb3NMmd9vK9xoV6+OCDDyqcz6rrjY5ySFQ0mQ5jurZLUu+3g9dfrpbBHxhj2wRynt4wAeCA7tfPvRUGarOgMJtTSciKIm4qwq/K8HKq8usLyOa5uRpBfDav6oyQ/eFCrEccAP/73/9qn9O7d29lxzhV5FIM4Wv/zkRBFLJ/o5kKbZSfsopAPD5KfeuKdwmgkB+UhFt/WjoN2kWUuVQdhGDWNr4eNWoUD2dXAQUg0bZ3l112sVE9oOkNopfWhqYg0i8+wbYFq1IRSIS69tprXV8DGdjoTKdSD0nfELNVElFegDZ9lqSYmZDHNHDgQO3voZUoSp6YospijAl+yCEjBZG+2MWph3dsPmnI2dWtW7fm8dIm4MSBUtnOOk0qaUobBYGQH/UAk/DQoepATDS1evfdd3npeGf4siXruEPqPZf4eUImPgiW/iNltqsIDJRZQM6DG1C0DqcPWUXo/BCkKgiE3KsHVCN+8MEHtb939913V3Q51EUvxRhlfskhY4JIY7htpg+d2QDFurp27er6Gq+++ipveC5qAtkS+kogxFU9yHkPcEzrCkNifSPnQZUU6tZxLybIaL8uyOImWOWsVk0s2dT03Xff8cxKt05rKAmOEDmU67Co6xSBELs1DIhD2siRI9kFF1ygfA6KLH744YfcTCwKOJoc0zFcu76d01krCNuc1ToVISYHavibivgJoIZT3759eQVSp4qwOfSVQIgiWWCgxLwp2OTmm2/mjmmvCXExPNhNyIQcsiKIbGRL3AhDTJrzzjuPlwV2A2yd8EfA1CSG09xEJEEghGsBEAOmJZSRV6FDhw68B4yu5liMmwEFsk9nRRCpi4XifSU2qwg51A01lx555BHeE8ANzz//PM+NkM1U5LQmEMInB5kkXnjhBe4bVAFh7Pfff782nNWS0OSS9D6de4JIY4zNE895smjUqJEnUxOAWk1oZagiCTwSSRAI4ZEDOhiaqiHcfvvtvNOfl/pYMVYPWe3PBQHdIDiri2yWq/IGj+5lJ5xwAispcRdPKB/+5ptvcmLRVYS0YBISCJFZq6KcRufOnXnAiArHH388Gzt2bCX1oGojGmPHNIDQ1rrZvEC1gN6Itb4IVZVOTKRHH32Ut5l0A2yfp556qrFeEykJAiFY9fDAAw9oyQHVmocNG+bJ5xBjcghkXw5KQVgX8qo7mci1miZPnsxOO+00T5s66s6jty1qvXhpek5KgkDwTw5Ym5988gnPaVD1c8G6g0+ibdu22vLsljimMw5tDVxBpN+EdSrCrc/Bscceyy6++GJPr4UWpegxgfLhzsgmUhIEQvZkgXWEApu9evXSNvsaMGCAlhwsc04Pz5YcAlMQ6RtUxCzqWe08pchKQlYRmIiwdb7//vueXq9bt27sscce4yU8dHZPUhIEQmbqvkePHmzcuHHK56AiwksvvcSjEXUEYVH15bpe24qGriDSFxJvZrStKkL+v6wisNGPGTOG7brrrp5eD5P30ksv5Sn/5JMgELIjB/l7Q4YM0ZIDEl1FSX6TerCEHEYHQQ6BKgibVYTqxCI2c2EqQqo+TE6mPtYy0JQEjrLNN9+clASBkCE5iLWI/vBQ8ogwdAJ5SyjHL5oAOUnCoqilQNVDoArCZhWhUhDO5BpkWGPD94qnnnqKlASBEAA5LFq0iJuWVOQAIBlOkIMqKU4+kFlADoGph8AJIo3BthKDjijEgHMMJTa84plnnuFObpCEriQHkQSBoA9nRQMgdHRcvXq18nmXX345O/nkk43JcJap9UD338AJwmYVYeobIUjixhtv5I5or0BJDlSZhGnKmXFNSoJAqDrnBTngYNWzZ09e+0yFE088ka9HlXKw0O8QuHrg1yOkG1rELPVFqE4xzsimP/74g5PErFmzPL8m/BcoSbz11luTT4JAcFlvGBdddBF74oknlM9Baf6JEydy/4OKGHSNgGK+ruoGTRBhmJgS4YtwKgh5EmJSonFQs2bNPL/WlClTeMY1+k0IoiGfBIHIQU0Od9xxh5Yc0DoURfqc5ODWI5zUQ44URNJUhHiUTUPY4FGH/phjjuFONK/AyefFF19kO+64IykJApGDYo09+eST7MILL1Q+B+Hmb7zxBisqKvLklLZoHdUNgyCqhfVu0292sK2TV+ePkOs1YbIirX+vvfby/Lpz5szhpLJ06dJKjmu3kuEEQhLIYfz48eySSy5RPgeFMfFzEzmozEkWkMPgMMghVAWRvqlW1mgyTWTZLCQ2+LKyMh6jvWzZMs+vW7t2bfbyyy+zfffdV9u21DL7KYFgJAfkMiAiadOmTVWeg1a/qHUGBW4iBwvXTSA1l3KuINIX3soaTV6UhFxCGCcaOMxQe94rUMu+U6dO3NHtVBGqznSkJgg2kwMS4VAYU0UOCOyAWVZFDqawVksOVcPDIofQFYR0063rF2Ga2KoeEtjk4YuAksDm7xUo5YFEHyQCyeYrU9VJUhKEuK4fFTm8/fbbPCpww4YNVZ4HRzRCxdE6lJ94HeRgueLOut9DXhWEhMFJmeiqqCYx6tev71tJ4MSEPIlbb72VZ4rKEU6UK0GwnRzQ06Fr165KchDKAeSgIoUEmGND31cLcjgJ3kk9FCdpouuUxHfffce6dOnCvv32W1+vj1PUQw89xLbZZhttXLdz8pOaIMSVHHCYQnUClMh3Aj4HkIMo3a0qgWO5wkav6Q42EUTL1MPcpE14OY/BGQKLDf/zzz/39fr77bcfe/rpp7kKEeamhCwIgqVrRRXoAbPRWWedpayvhE6Or7zyCtt///2TSg5Aq9RnKQ37j+TKxMTSH2a07ZPeeXrXpfkjBHbSpEm8yJ8ffPrpp7xb1uzZs6uEwVINJ0KcyUEcotAuFM21VOSAdqFIKkWHRlXL0ISQw+hckENOFUR6Elgf9uplAchKApnTWAzTpk3z9fooE37XXXexs88+u5Lz2klKpCQIcVobN9xwA7vnnnuUz2vUqBHPc0BekZjLMiEkhBxCDWvNm4JI3yR8qEQ4rL0U9sOGjh7Vzz33HCcJP0ChMlSqhANbV55DlVRHaoKQT2LQkQPql51xxhlacjj44IPZm2++WUEObrkOFh+MBueKHHKuIKSJAl9EyySdluTFoFISeBw6dCi7+eabfW/ie++9Nxs7dixr3Lix5wbspCYI+VwH8npYuXIlL9mta9sLX92jjz7KttxyS2X9M4tLdztRmvo8rXL5B6vl6YP2TcrCUPkknP4IKAmM/v3787aIW2yxha+/sWDBAh7qh6gOQTZeQmFJTRBybVJyfj1v3jzWunVrLTlcddVVbPTo0RWF93QluxNyCMr5vlmQx0kzNPXQL6knKFWEk9jUP/jgAy63V6xY4fvvoD4+ZPr222+f5IVEiLBqEI8oJXPOOeew9evXV3kuCAEh3Sit4TxcJaDpjwrDUp+pf5IIAo5qmJqKkk4SKpPT999/z0nik08+8f13kJCHUsgIA/RqciKiIOTKpAT/2fXXX89NqirUqVOHd1tEm1Cv5GD5PC5j/4a1rs31H86XiUk4rPsmadHozE0qkxPyHCZPnsxLbPgFSnocddRR7N577+WZ2CIc1lTTybmoCYQwyAFlZjA3deRw9NFHs3fffbeih7RpnSSoYGXffJBDXhWENIHGpx66JH0BOZsDyb6ERx55hN1000385OUXiBd/+OGHWZMmTVwXGKkJQpgmJVRjRVg2nNJVTqqp+QhVMWDAAF+KIQFzdkLqc3XN26E2ApMqMbkRXhaTM0xVkMRHH33EF5efkuECsOeiNy9aNAqHuJcIECIKgt/5rDKjolQG5t/w4cOVKrVWrVrcJHr44Yd7NiklZJ7mNOchkgSRnkhQEONpYVVNqJPVxKpVq9jFF1/MT2KZAFnbqAyLHhNONSFOcfJiI6IgZKsa5s+fz84880xtSRmYm6CQd955ZyUByHMygYeYrqnPNiGfb6BaFK5C+iKMTuICM3WmE2W9xakfbUjhvENlV2RS+wVUSLt27fjzkZgk+yZk9aI7DRIITnWgIgfhiEamf5s2bZTkgJwG+MhQU2mXXXbR+hqcSjdB5DA63+QQGQUhmZoSFdVkOompQmFlJ/PcuXN5FvXXX3+d0d9r2LAhX6AdO3b01HmL1ATBq2r47LPP2LnnnquNwGvWrBkbOXIk22effSodikzmpYTNwTKWp6ilSCqI9A1PXFSTSkk4VYQqoQ4DVV1LSko4SWSyWL755ht24okn8lBalB9XFf7Tda+jJDtSDaqv0bMBvgaUxVCRA1Tv1VdfzWbOnMnJQWdSogNK/qKWIqsgpEk4KPUwkE5nar+Es2w4HmfMmMF9E8uXL8/ob6K/xJVXXslfA01Y/FbGJEWRvDnpnJ9vvPEGu/TSS9nixYuVr9GqVSseTQf14EU1JHiuodbSoMgcXCM6IRNTq8ltUZpamcoZ2GvWrGGDBg3iNZkyPd2jENrAgQN59momJZSJKOwlBt2cXLJkCT9cvPbaa8rXgK8B4asgj+rVq2tJwfk91XxKwPzKea2luBJEEfvXH1FIC7SqvFeFwoqBJCPUdPLbrU4GcifgyD700EON/gkiimQRgzwPUUH47rvvZsOGDVN2fAMQtjpkyBDWoEEDY3Vjmk8cMCnB71BGBOFtkvZJPYyixao3OTlJQjiyYQuGAxqNVzJJrhM48sgjeYIeslrd+vwm+NRnPSnI/8d8evLJJ3nV4Z9//lmrRO+8807u4zIRg+r/CT5swO8wOmpvqiDikxYE0YcWr5kkdGriyy+/5E5BqIqMJ0hqgZ5wwgncTICy4kQUyVILAjh4oFrw4MGDteoU5iSoV5ickJypmg86gkj4nEFIayQDdKJOEDAxvcMS7o/IRk3g6wkTJvDokkyd2AAI4fjjj+eL34+iILKIPzGgi9ttt93Gw1d1hwioBfxO3bp1fRNDglUDgNahHaIStRQrgkhP1pZpkiikZe1dTTgJ4/fff+cF0kaMGKG1GXsFsl9BFKjj7+bIdlv4RBb5IwXTfEI/aJTjhqnoiy++0L5m27Ztub9K9FbXFaTUqYWEHx7WpsmhNKpvsCAmEzuxpTiyVRNOokDOw+23385eeukl/v9sAGf2JZdcwrp06cJj3HVZr6QqoksKzvkD/xUa9MD5jAglHZDHAD/Escce64kYSDUo0TUK2dKxJ4j05E1Ug6Gg1ISurhPKH2CBv/XWW1m/jz333JOdd955POlup5128lVkjZRFfklBfI0ikMhTgAN69erV2teuV68e92uhMZUo+ugkBpNpiQ4HFchLAyBrCSI9kWFqKqYtwL+a0DmzZ82axW655Rb28ccfZ/0+4KSEmkCXsEMOOcSoKIgswiUEL6SA+z99+nTe5nbixIncrKQDSrOAGE455ZRK+QxuxEDmJCVKUp+9QxzeaNwIItH1mjIhCXkz0D1ivP3227xV6YcffhjI+0HF2F69erFTTz2V7brrrkY14Tf2PemEYUqE9OJ8RrfCp59+mpuS0FzKhMaNG7NrrrmGde/e3ZdicLufCb6HZSwidZasI4j0JCendUBmJ5WvAvWdQBS6JvJ+gdPmEUccwU0SnTp14qU8/JKFlw3F1g3HLSveq+MZiW3IdkY1YKgGN/8TAhCQ/YzINaECiRiyRuSd0rEniPSkJ6e1j03Dq39Cfnzvvfd4xBNq7GTrzBbYdtttOUl069aNJ+EhVt4LWWSz0cRlQ/JSHsWPKQlj/fr1/P4hGgnta1Hi3QQoBISrXnbZZezAAw9UbvZEDFkh8k5pKwgivQjgsB5Kcy57ojCZn1D1Fc7LF154wXWD8YPtttuOKwtEwaAPMXpdBFF+IZONKMzNK9O6WF7NSM6vV6xYwaZOncp9CtOmTfN0z2rUqMF69+7NizXWqVPHMzEESeQJQP/UtRgWtzcd67tHmdbZmZ1ksnCW9nYqi19++YXbrFEMEDbsIIGTK0pEI7+iQ4cObP/999c2icm0Zk8UN6pszEdy6Qs0gkI0GtQCymx7JSWEKaONLYozwvRHiiE0RDZT2mqCSC8UimzKUk04iQLQqQpsSDiZjho1iju2gzI/yUCP4uLiYta+fXvekQyOUj+qIojNyu9zglYKOpWwadMmTgIon4KBKDQkQXoFzHyIREKkWYsWLbTXMVNiIHKogthELNlKEFSOIwSi0IXIyo9lZWVcUaBGzw8//BDae4b5CWGzGFAXKPVRWFhoNHHoyCJspZGpL0H1PVxnRBmhe+CcOXO4UigtLfVt6oMaO+yww3igAMKQQRJEDDlBpMtoJIIgJJKg8NccEYXz/4ifR5cw+CkmTZrEs3FDnbSpjQg1f9CEpmnTpryIIDJ7kcQlR9z4zdoNcoPzYz7C1z/99BP76quv2IIFC/gjEhnnz5/Po48yRZMmTViPHj3YaaedxvbYYw8jgRIxBI4yFqNwVqsJIr3IKPw1B0Rhcm6LPgFwkKLAG0gjm3LjfoFEPfQeAFGAQMTA5rjbbrtx1ZGP8g64PiiNjWKJYkB9ofsaBkpaBEWq+LxQCYgUA4FmQgREDFkjduGs1hMEkUQ4ROEkCbHhiUeTykCXuylTpvD4e7RFhf08n0BYbe3atdnOO+/MdthhBz5q1qzJB8wucNRioAXrFltsUdH/W/QDx+cD4YmBz4NQUvgAxPjtt9+4Q3/VqlUVjytXrgyVKBs1asRJAaN58+a+CUAXkUTEkGxysI4g0ptZcZokCCERhUlZOElCjLVr17I333yTDzi38X9CZgBZIU8BUV/HHXccN6/Jm7efkFQqeRI4QA4ltnwYK+84daMLnihMqsKLupAHfBZwuIIsEBEFuzvBDDjqkVyIgfwRqJ9s6iGRGSkURLIrHBEEkUTkVIVMEm6EgeQuhGuKsXTp0sRfc5jDELWF6COE/O63337G3BBSC0QORBBEEpFVFV6d206yUP0uWlrOnj2bV5jFQDZ3pnkGcQEc7EhcAyG0a9eOf/2f//zHUwltL6TgRS0QMRA5JIogiCRyTxRuZGEiD93P4a9ALgBCP8UAiZjKU0cd6KEBPwKIAN3Y4FxWEYKfrzMxIREpEDkkmiCIJOJDFjryUP3exo0beYjowoUL+YDKEGGjv/76a6SuEaKmmjVrxkkASX4gBmcJdDeF4KUBj99MciIGIgciCCKJSJOFvPn7IRDV1wIILQVRINcA/gx5/Pjjj7yrXhhA21XkISBBDYQgSGGXXXbJaPPPVCkQKRA5EEEQScSKKFTfdyMKFUEAcv0nt+c6/y5yF1BsUCYP+Wsv6gObLDb++vXr88Q85CGg41pRURE3E8GZLDuU5a/9koEfkxGRApEDEQSRRCLIwrnpeyUSr2pFV80WyW3CVIWBOlMogyEDeQhff/11BRGIRDr50UkM+NoLMXh5JFIgcsgVqift7uLmpjcHIoncXG8lKbhtbPhdfG3a9N2IQEU0Ol8HNnA8wl+AnAMUBQRpwDnuJAiYqKBEkHWtIgl5qHpcZJObQK1YiRyIIHJHEmg4RGU58kAWJsIQ5KAiDB1BuKkS1e8JU5Xc/0Js4CABVekJgT///JOX5xDE4FQQOoLwSwhECpEA0v77J40cEksQEkmgXgrVboqJunB7nlfyEF8L1SDIB/9XkYQKKLktk4OKIPx0yMvksxNyRg7W1FYigvC3QZWmNocORBLRUxdeSENWFToTlYkg5EdhznJroSkThEwMftUDKQQiByKI+JBEq9SX4xk1HYo9abi9lspUJb4nqwcvBOH0N5j8D6QQYgeQQtfU/ShL8kWoTvOAL8oySUkQScSYNPxstLJqUDm3TUD/Bq/OadP7IUKILDl0iHuznyBQjeZCxULlcjI1RtPViB9pmKKFdL/r/L8cnioPNwWhynVwK45ncoAT8orRRA6kIEwk0Td1isRjP7oidisOldlJdlTryAFAoyATMXlxSBMih2Gp+9SfLgMpCLdNBZOkL10JuxWHk0S8KBAvBKF6XULk0ZfIgQjCzyYCqQnnNUnNBBCFqky2iSQEQaiIgMxHsQLWd6sk5jgQQWS/gZSmSaKUrkaySMOPgjCpBSKKSKM0TQ60vokgMt4wyhg5r60nBb+bOQiCSCDWwHrukPQwViKIYDaQtakBnwTZKBNKHk78/vvvdHHiC5TN6EuRSkQQQW8Wwxj5JQgOBUGIDYS/YRhdCiKIsEgC9sq6qVFCVyO5kBWE7f2yLQHWa13yNxBB5IIkYHKCX2IwXQ1SEITIYzDWK5mUiCByTRSD2L8O7DK6GslTEKQcIg+syw7pdUoggsgLSUC6wi8xga4GKQhCZID12Cq9PglEEHklCZicurJ/s69JxiZEQQCkIiIHXi4H65FMSkQQUSOK0Wk1QacWe+6pliDc2qESco4SRlnRRBAR31DKyIFtP1Dum0ghUhCO6DK6FEQQcSCKQYzKdFgLVHxFyW8ZRBR5gSiXMYguBRFE3EiiNDVAEsjAJnuoZaBIprwC6wkZ0VRLiQgi9kQhMrBL6GrYRRCEvKCEUUY0EYRlJCF8ExTpFCOYFMK6desqfsf5e6QsQlMNfcnXQARhM1GMZv+W6hhNVyPeBEEKIqfg64YilIggkkASojosFAXZT2MK8kHkBFgfHaj6KhFEEomiJO3EJrOTBQqCwl4DhTAnUTY0EUTiiYLL59Qgp1tMCYLIIVBgHZA5iQiCIJHE2nTTdBAF1XWKEUGYfocIwxcmpImhP5mTiCAIaqIoS9d1gn+CpHWEQT6IwIB53iFdP6mMLgcRBMGdKErSYbFUTjziCoKQMcrSxNCB/AxEEITMiQJmp75EFEQQFhEDHNB1iRiIIAjBEMVoIopoEgSZmTIihtF0OYggCEQU1gKZ1HL0EhEFEQMRBCGKREEyPY8KgqBFCREDEQQh/0QhnNlEFDkkCFGLiaAkBuF8JmIggiBEgChE1BPVeQoQ6PvgRhCyeSnhpibMu7oUlUQEQYguUZSl6zzVZP92tSujq5K5enAjCFXb0YShLD3PaqbrJdF8I4IgxIAokJk9KO2n6MrI/JQR/vnnH1eCSCgxYD51TfsXBlHmMxEEIb5kMUEyPw0jVeEdJgWxceNGtmnTpiSphzL2vzpJMCNRSRgiCIJFRFGWrnMjVAUt8CwUhFARAk41YRFpTJDUQn8yIxFBEJKhKkAS8FWgSCD1pfCpIARBqIjBAnIoTc+LmukaSXSYIIIgJJAo4KsYlu5LUZfIwh9B/Pbbb66vESOyEKRQN92HYRj5FpKN6nQJCBJZwHQAG/Ow1KZWlHrskhpnpkbLJF0HoQDcopiEgsDvVKtWLa7KAaQwJjUmkOmIQARByIYsTkyN4iRdBzcfhFAQMqmIkbqGUf1YJanxKpECgQiCEDRZFKbJon36sdAm5eBUEV5MTE4F4ewuB6LIM2HATAQfwow0KZDZiEAEQQiFLLC5jE6PvqmNr2VaVcRWXZgczG4EsXr1av47YshEkWcFIVQCMuzJp0TICOSkJmRLGKVpZybi4rEjIt9iMItpYp58+seG/9dffxl/f+rUqUrzkkpJhOyfKElfd34f0vdjGJEDIav1TZeAEPKGKxRGi/RjUVQJQSgGDPge1q5dy4qKiiqS4XQYMmQI69WrF6tevXrF2GyzzbiawABvCjURkKooSxPCPFIIhDBBJiZC6AqDSWGzaR+GTBoto0Iast8B4/HHH3clB+Daa69lDRs2ZIccckjFcwUpyKohQ19EWfr6zUuTQin5EAikIAhJUxpCXWC0l77OiXqQyQHq4YsvvmDFxcVs/fr1nl5rxx13ZFOmTGENGjSoUBFQD0JJyCpCoyTK0mOG+JoqohKIIAgE8yYOhVHI/ucAb59+LA6KHADZ0bxs2TJ21FFHsbKyMl+vCXIASdSqVauKmSlNEiVpYpiRfgQBrCUTESGq+H8BBgBoz6eNKuioDAAAAABJRU5ErkJggg==)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Kevin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2939cbf9-4fd9-48bd-8c69-e8b1bbb00aba": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "31", + zIndex: "31", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Workspace", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "304.2689485095541px", + width: "180.87368016932191px", + shape: "barrel", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Workspace", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c2f6b13e-eb8d-4fef-a857-27e14ddcf6d9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "19", + zIndex: "19", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Holt", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Holt", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c509f029-ffe2-4d92-b353-c42ada922c58": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "26", + zIndex: "26", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amy", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amy", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "79b2fba4-df36-4cff-8d7e-e61cde71434a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "34", + zIndex: "34", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Geena", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Geena", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "091d4747-e5d3-401b-a8fb-c6cba6ee9c82": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "29", + zIndex: "29", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Rosa", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/png;base64,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)", + backgroundImage: + "url(data:image/png;base64,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)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Rosa", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "787a12fb-62ab-429e-8af7-412b161426d9": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(0,179,159)", + lineColor: "rgb(0,179,159)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "552d4a20-700e-4ef2-946d-7a366c709182": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(0,179,159)", + lineColor: "rgb(0,179,159)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "5888a85b-e0b4-4b92-9190-e8dede9d4515": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "0200796a-65d9-48bb-98c4-5237dc41f6a7": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-a83f0098-2f91-4275-b075-c8676e842804 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-a83f0098-2f91-4275-b075-c8676e842804 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-a83f0098-2f91-4275-b075-c8676e842804 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-a83f0098-2f91-4275-b075-c8676e842804" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-a83f0098-2f91-4275-b075-c8676e842804" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-a83f0098-2f91-4275-b075-c8676e842804-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-a83f0098-2f91-4275-b075-c8676e842804-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-awscomplex.js b/static/embed-test/embedded-design-awscomplex.js new file mode 100644 index 000000000000..6f699cccec3e --- /dev/null +++ b/static/embed-test/embedded-design-awscomplex.js @@ -0,0 +1,24148 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "0407e544-8ebd-4ac3-9e32-cc13e432168a", + label: "AWS Cognito", + type: "AWS Cognito", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Cognito", + services: { + "0407e544-8ebd-4ac3-9e32-cc13e432168a": { + settings: { label: "Amazon Cognito", name: "AWS Cognito" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "24334889-927d-405f-a38a-cc33b8a7691b", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "0407e544-8ebd-4ac3-9e32-cc13e432168a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "0407e544-8ebd-4ac3-9e32-cc13e432168a", + label: "AWS Cognito", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#DD344C", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 5 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws cognito-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws cognito-white.svg" + }, + position: { posX: 97.5098767775386, posY: 196.04610974008702 }, + whiteboardData: {} + } + }, + type: "AWS Cognito" + } + } + } + }, + position: { x: 97.5098767775386, y: 196.04610974008702 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9", + label: "AWS DynamoDB", + type: "AWS DynamoDB", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS DynamoDB", + services: { + "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9": { + settings: { label: "Amazon DynamicDB", name: "AWS DynamoDB" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "5e77cc5c-c406-4c58-a3c9-dc8ccaab9879", + source: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd", + subType: "Annotation", + target: "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9", + label: "AWS DynamoDB", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#C925D1", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 22 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws dynamodb-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws dynamodb-white.svg" + }, + position: { posX: 98.1557479255682, posY: 130.72638247947094 }, + whiteboardData: {} + } + }, + type: "AWS DynamoDB" + } + } + } + }, + position: { x: 98.1557479255682, y: 130.72638247947094 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + label: "Section", + type: "Section", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3": { + settings: { label: "Data Component", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "f88d8404-8778-4184-b4b2-a80c95e14652", + source: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + subType: "Annotation", + target: "e81196ef-bb66-46fd-9b31-5c648552bd9e" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "unbundled-bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "fe53a0a6-030f-4744-80ef-85bde6545fee", + source: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + subType: "Annotation", + target: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "unbundled-bezier", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "801499fd-3832-5fb2-8a18-bd2451f4bef4", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#396679", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-flowchart/complete/decision-complete.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(255,192,52)", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(255,192,52)", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 29 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 362.2400430471165, posY: 424.66778899795116 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 362.2400430471165, y: 424.66778899795116 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "be7b09a9-f09f-4721-8575-79833dd40cf8", + label: "Section", + type: "Section", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "be7b09a9-f09f-4721-8575-79833dd40cf8": { + settings: { label: "Cost Component", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "6d16c0d6-4086-4080-a8fe-8fbd54c986ca", + source: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + subType: "Annotation", + target: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "unbundled-bezier", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "be7b09a9-f09f-4721-8575-79833dd40cf8", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "801499fd-3832-5fb2-8a18-bd2451f4bef4", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#396679", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-flowchart/complete/decision-complete.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(66,99,235)", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(66,99,235)", + "border-style": "solid", + "border-width": "1px", + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 27 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 505.59619935829824, posY: 162.99975698559206 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 505.59619935829824, y: 162.99975698559206 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + label: "AWS S3 on Outposts", + type: "AWS S3 on Outposts", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS S3 on Outposts", + services: { + "2d6194b0-7d7c-4a1e-8320-ad0989932670": { + settings: { label: "S3 bucket", name: "AWS S3 on Outposts" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "24334889-927d-405f-a38a-cc33b8a7691b", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "0407e544-8ebd-4ac3-9e32-cc13e432168a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "013745d4-6728-4a77-88c0-3e5ff2d13288", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "4d5691d0-7395-4177-8fdd-7f6c7be59312" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "2bd29128-636d-470b-896a-ce3c80d2e6ff", + source: "fe1e6f32-b123-4f1d-8714-d07f54060519", + subType: "Annotation", + target: "2d6194b0-7d7c-4a1e-8320-ad0989932670" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "aaacebea-45b7-401c-b806-476dc2c90e4e", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "4a162da7-2c89-480a-aaed-e5dfdb573c98" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + label: "AWS S3 on Outposts", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#7AA116", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 7 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws s3 on outposts-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws s3 on outposts-white.svg" + }, + position: { posX: 96.99146760530162, posY: 267.94017298788566 }, + whiteboardData: {} + } + }, + type: "AWS S3 on Outposts" + } + } + } + }, + position: { x: 96.99146760530162, y: 267.94017298788566 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4a162da7-2c89-480a-aaed-e5dfdb573c98", + label: "Section", + type: "Section", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "4a162da7-2c89-480a-aaed-e5dfdb573c98": { + settings: { label: "Store Management components3", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "aaacebea-45b7-401c-b806-476dc2c90e4e", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "4a162da7-2c89-480a-aaed-e5dfdb573c98" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4a162da7-2c89-480a-aaed-e5dfdb573c98", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "801499fd-3832-5fb2-8a18-bd2451f4bef4", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#396679", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-flowchart/complete/decision-complete.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(255,192,52)", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(255,192,52)", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 25 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 45.94665230810076, posY: 432.30537267894556 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 45.94665230810076, y: 432.30537267894556 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "fe1e6f32-b123-4f1d-8714-d07f54060519", + label: "AWS CloudFront", + type: "AWS CloudFront", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS CloudFront", + services: { + "fe1e6f32-b123-4f1d-8714-d07f54060519": { + settings: { label: "Cloudfront", name: "AWS CloudFront" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "2bd29128-636d-470b-896a-ce3c80d2e6ff", + source: "fe1e6f32-b123-4f1d-8714-d07f54060519", + subType: "Annotation", + target: "2d6194b0-7d7c-4a1e-8320-ad0989932670" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "fe1e6f32-b123-4f1d-8714-d07f54060519", + label: "AWS CloudFront", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#8C4FFF", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 14 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws cloudfront-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws cloudfront-white.svg" + }, + position: { posX: 8.909150584128398, posY: 269.89443571173257 }, + whiteboardData: {} + } + }, + type: "AWS CloudFront" + } + } + } + }, + position: { x: 8.909150584128398, y: 269.89443571173257 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + label: "Section", + type: "Section", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "4d5691d0-7395-4177-8fdd-7f6c7be59312": { + settings: { label: "Client API", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "6d16c0d6-4086-4080-a8fe-8fbd54c986ca", + source: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + subType: "Annotation", + target: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "unbundled-bezier", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "013745d4-6728-4a77-88c0-3e5ff2d13288", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "4d5691d0-7395-4177-8fdd-7f6c7be59312" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "fe53a0a6-030f-4744-80ef-85bde6545fee", + source: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + subType: "Annotation", + target: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "unbundled-bezier", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "801499fd-3832-5fb2-8a18-bd2451f4bef4", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#396679", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-flowchart/complete/decision-complete.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "#d0021b", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "#d0021b", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 24 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 221.57494165163456, posY: 266.5216682731481 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 221.57494165163456, y: 266.5216682731481 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd", + label: "AWS Lambda", + type: "AWS Lambda", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Lambda", + services: { + "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd": { + settings: { label: "Lambda Setting Function", name: "AWS Lambda" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "a5cc1341-062d-41ed-b180-a3e058eb30e8", + source: "6e422442-670a-4fee-b031-790bcac94b32", + subType: "Annotation", + target: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "5e77cc5c-c406-4c58-a3c9-dc8ccaab9879", + source: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd", + subType: "Annotation", + target: "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd", + label: "AWS Lambda", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#ED7100", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 19 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws lambda-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws lambda-white.svg" + }, + position: { posX: 261.31825398234383, posY: 132.03688126300244 }, + whiteboardData: {} + } + }, + type: "AWS Lambda" + } + } + } + }, + position: { x: 261.31825398234383, y: 132.03688126300244 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + label: "Section", + type: "Section", + version: "0.7.2", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "meshery-shapes", + model: "meshery-shapes", + config: { + name: "Section", + services: { + "e81196ef-bb66-46fd-9b31-5c648552bd9e": { + settings: { label: "Image Deployment", name: "Section" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "f88d8404-8778-4184-b4b2-a80c95e14652", + source: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + subType: "Annotation", + target: "e81196ef-bb66-46fd-9b31-5c648552bd9e" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "unbundled-bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + label: "Section", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Shapes", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "801499fd-3832-5fb2-8a18-bd2451f4bef4", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#396679", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-flowchart/complete/decision-complete.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-shapes/white/meshery-shapes-white.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-shapes", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{"designer":{"show-node-group-badge":false, "edit":{"config":false, "text":false,"lock":true,"shape":{"convert-shape":false},"style":true},"label":{"edit":true,"show":true,"sync-with-config-property":"label"}}}', + defaultData: '{"label":""}', + genealogy: "parent", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-color": "rgb(174,62,201)", + "background-image": "none", + "background-opacity": 0.1, + "border-color": "rgb(174,62,201)", + "border-style": "solid", + "border-width": 1, + data: { label: "" }, + height: "30px", + width: "30px", + "z-index": 30 + }, + styles: + '{"height":"30px","width":"30px", "background-image":"none","border-width":1,"border-style":"dashed","background-opacity":0.1}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/anchornode-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/anchornode-white.svg" + }, + position: { posX: 573.0465396433461, posY: 394.832663325065 }, + whiteboardData: {} + } + }, + type: "Section" + } + } + } + }, + position: { x: 573.0465396433461, y: 394.832663325065 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + label: "AWS CodePipeline", + type: "AWS CodePipeline", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS CodePipeline", + services: { + "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79": { + settings: { label: "AWS CodePipeline", name: "AWS CodePipeline" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "c40f1964-3162-4f31-8d4d-706c08287860", + source: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + subType: "Annotation", + target: "6d3a6772-3c10-48c4-abb8-94cdc2cd465a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "e1d137e9-5d73-4faf-bae9-d717b4f48fa5", + source: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + subType: "Annotation", + target: "70c15791-e4c8-442c-a7b9-de0967e66f3b" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + label: "AWS CodePipeline", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + primaryColor: "#C925D1", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 20 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws codepipeline-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws codepipeline-white.svg" + }, + parent: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + position: { posX: 573.0465396433461, posY: 389.5360029003525 }, + whiteboardData: {} + } + }, + type: "AWS CodePipeline" + } + } + }, + parent: "e81196ef-bb66-46fd-9b31-5c648552bd9e" + }, + position: { x: 573.0465396433461, y: 389.5360029003525 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ecec6776-80af-4617-9319-42817ba98234", + label: "AWS S3 on Outposts", + type: "AWS S3 on Outposts", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS S3 on Outposts", + services: { + "ecec6776-80af-4617-9319-42817ba98234": { + settings: { label: "S3 CURBucket", name: "AWS S3 on Outposts" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "e487a7a5-5fac-4999-87ef-d172be1df5fd", + source: "08bf65d5-8248-4376-b1ee-793a57ec045e", + subType: "Annotation", + target: "ecec6776-80af-4617-9319-42817ba98234" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "412b08a0-ab17-43f6-a357-2c9ce30ec8b1", + source: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + subType: "Annotation", + target: "ecec6776-80af-4617-9319-42817ba98234" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ecec6776-80af-4617-9319-42817ba98234", + label: "AWS S3 on Outposts", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#7AA116", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 8 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws s3 on outposts-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws s3 on outposts-white.svg" + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8", + position: { posX: 531.2542463136316, posY: 126.81650958636415 }, + whiteboardData: {} + } + }, + type: "AWS S3 on Outposts" + } + } + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + position: { x: 531.2542463136316, y: 126.81650958636415 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "981d0823-2071-4308-90f9-b43a01777a3e", + label: "AWS API Gateway", + type: "AWS API Gateway", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS API Gateway", + services: { + "981d0823-2071-4308-90f9-b43a01777a3e": { + settings: { label: "Amazon API Gateway", name: "AWS API Gateway" }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "981d0823-2071-4308-90f9-b43a01777a3e", + label: "AWS API Gateway", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + primaryColor: "#E7157B", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 4 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws api gateway-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws api gateway-white.svg" + }, + parent: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + position: { posX: 201.44811730324156, posY: 258.6510920007653 }, + whiteboardData: {} + } + }, + type: "AWS API Gateway" + } + } + }, + parent: "4d5691d0-7395-4177-8fdd-7f6c7be59312" + }, + position: { x: 201.44811730324156, y: 258.6510920007653 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef", + label: "AWS Amplify", + type: "AWS Amplify", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Amplify", + services: { + "8b7ec622-f5f9-4485-ab52-33c6ce6038ef": { + settings: { label: "AWS Amplify", name: "AWS Amplify" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "6bfa820c-7717-44c3-abc5-d36cc544ebda", + source: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef", + subType: "Annotation", + target: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "1a856427-72f4-4d72-9391-2bfaf1905cf9", + source: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6", + subType: "Annotation", + target: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef", + label: "AWS Amplify", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "4a162da7-2c89-480a-aaed-e5dfdb573c98", + primaryColor: "#DD344C", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 13 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws amplify-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws amplify-white.svg" + }, + parent: "4a162da7-2c89-480a-aaed-e5dfdb573c98", + position: { posX: 5.432781679734359, posY: 424.3126093153078 }, + whiteboardData: {} + } + }, + type: "AWS Amplify" + } + } + }, + parent: "4a162da7-2c89-480a-aaed-e5dfdb573c98" + }, + position: { x: 5.432781679734359, y: 424.3126093153078 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6d3a6772-3c10-48c4-abb8-94cdc2cd465a", + label: "AWS CodeBuild", + type: "AWS CodeBuild", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS CodeBuild", + services: { + "6d3a6772-3c10-48c4-abb8-94cdc2cd465a": { + settings: { label: "AWS CodeBuild", name: "AWS CodeBuild" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "c40f1964-3162-4f31-8d4d-706c08287860", + source: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + subType: "Annotation", + target: "6d3a6772-3c10-48c4-abb8-94cdc2cd465a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6d3a6772-3c10-48c4-abb8-94cdc2cd465a", + label: "AWS CodeBuild", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + primaryColor: "#C925D1", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 21 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws codebuild-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws codebuild-white.svg" + }, + parent: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + position: { posX: 574.3489550303001, posY: 471.8621169553827 }, + whiteboardData: {} + } + }, + type: "AWS CodeBuild" + } + } + }, + parent: "e81196ef-bb66-46fd-9b31-5c648552bd9e" + }, + position: { x: 574.3489550303001, y: 471.8621169553827 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d93db70a-6b23-404e-b5f7-7de8c80466d5", + label: "AWS Neptune", + type: "AWS Neptune", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Neptune", + services: { + "d93db70a-6b23-404e-b5f7-7de8c80466d5": { + settings: { label: "Amazon Neptun", name: "AWS Neptune" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "dc6f0268-6cf9-46b3-b690-8c7ef601506a", + source: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187", + subType: "Annotation", + target: "d93db70a-6b23-404e-b5f7-7de8c80466d5" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "9e15a841-6339-4bee-ab2e-e98306bd7ba5", + source: "d93db70a-6b23-404e-b5f7-7de8c80466d5", + subType: "Annotation", + target: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "d93db70a-6b23-404e-b5f7-7de8c80466d5", + label: "AWS Neptune", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + primaryColor: "#C925D1", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 12 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws neptune-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws neptune-white.svg" + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + position: { posX: 399.15364745291305, posY: 388.3935270056259 }, + whiteboardData: {} + } + }, + type: "AWS Neptune" + } + } + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + position: { x: 399.15364745291305, y: 388.3935270056259 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187", + label: "AWS Lambda", + type: "AWS Lambda", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Lambda", + services: { + "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187": { + settings: { label: "Germlin Function", name: "AWS Lambda" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "dc6f0268-6cf9-46b3-b690-8c7ef601506a", + source: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187", + subType: "Annotation", + target: "d93db70a-6b23-404e-b5f7-7de8c80466d5" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "9e15a841-6339-4bee-ab2e-e98306bd7ba5", + source: "d93db70a-6b23-404e-b5f7-7de8c80466d5", + subType: "Annotation", + target: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187", + label: "AWS Lambda", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + primaryColor: "#ED7100", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 16 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws lambda-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws lambda-white.svg" + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + position: { posX: 329.04110084979044, posY: 389.3209748912059 }, + whiteboardData: {} + } + }, + type: "AWS Lambda" + } + } + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + position: { x: 329.04110084979044, y: 389.3209748912059 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6e422442-670a-4fee-b031-790bcac94b32", + label: "AWS AppSync", + type: "AWS AppSync", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS AppSync", + services: { + "6e422442-670a-4fee-b031-790bcac94b32": { + settings: { label: "AppSync", name: "AWS AppSync" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "a5cc1341-062d-41ed-b180-a3e058eb30e8", + source: "6e422442-670a-4fee-b031-790bcac94b32", + subType: "Annotation", + target: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(208,2,27)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6e422442-670a-4fee-b031-790bcac94b32", + label: "AWS AppSync", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + primaryColor: "#E7157B", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 23 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws appsync-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws appsync-white.svg" + }, + parent: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + position: { posX: 262.20176600002753, posY: 256.39224454553096 }, + whiteboardData: {} + } + }, + type: "AWS AppSync" + } + } + }, + parent: "4d5691d0-7395-4177-8fdd-7f6c7be59312" + }, + position: { x: 262.20176600002753, y: 256.39224454553096 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb", + label: "AWS Lambda", + type: "AWS Lambda", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Lambda", + services: { + "4a47c821-bcf3-4621-9f0d-1d15fab35cdb": { + settings: { label: "Search Function", name: "AWS Lambda" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "a40e56a2-132a-4187-aca8-a8e9b1a72c07", + source: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb", + subType: "Annotation", + target: "a82b6183-e300-4f95-8afb-b0ca71354d95" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "ed1328e1-0cf6-4b1d-b7e8-05f2c5f2ab27", + source: "a82b6183-e300-4f95-8afb-b0ca71354d95", + subType: "Annotation", + target: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb", + label: "AWS Lambda", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + primaryColor: "#ED7100", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 18 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws lambda-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws lambda-white.svg" + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + position: { posX: 325.82643864131995, posY: 442.9420509902764 }, + whiteboardData: {} + } + }, + type: "AWS Lambda" + } + } + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + position: { x: 325.82643864131995, y: 442.9420509902764 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6", + label: "AWS S3 on Outposts", + type: "AWS S3 on Outposts", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS S3 on Outposts", + services: { + "906bfe13-9220-4eb4-8165-62c1b5a4e5d6": { + settings: { label: "S3 bucket", name: "AWS S3 on Outposts" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "6bfa820c-7717-44c3-abc5-d36cc544ebda", + source: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef", + subType: "Annotation", + target: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "1a856427-72f4-4d72-9391-2bfaf1905cf9", + source: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6", + subType: "Annotation", + target: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6", + label: "AWS S3 on Outposts", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "4a162da7-2c89-480a-aaed-e5dfdb573c98", + primaryColor: "#7AA116", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 10 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws s3 on outposts-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws s3 on outposts-white.svg" + }, + parent: "4a162da7-2c89-480a-aaed-e5dfdb573c98", + position: { posX: 90.46052293646716, posY: 422.29813604258334 }, + whiteboardData: {} + } + }, + type: "AWS S3 on Outposts" + } + } + }, + parent: "4a162da7-2c89-480a-aaed-e5dfdb573c98" + }, + position: { x: 90.46052293646716, y: 422.29813604258334 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "08bf65d5-8248-4376-b1ee-793a57ec045e", + label: "AWS Cost and Usage Report", + type: "AWS Cost and Usage Report", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Cost and Usage Report", + services: { + "08bf65d5-8248-4376-b1ee-793a57ec045e": { + settings: { + label: "Cost & Usage Report", + name: "AWS Cost and Usage Report" + }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "e487a7a5-5fac-4999-87ef-d172be1df5fd", + source: "08bf65d5-8248-4376-b1ee-793a57ec045e", + subType: "Annotation", + target: "ecec6776-80af-4617-9319-42817ba98234" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "08bf65d5-8248-4376-b1ee-793a57ec045e", + label: "AWS Cost and Usage Report", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#7AA116", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 26 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws cost and usage report-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws cost and usage report-white.svg" + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8", + position: { posX: 612.8923261029632, posY: 128.2970774209691 }, + whiteboardData: {} + } + }, + type: "AWS Cost and Usage Report" + } + } + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + position: { x: 612.8923261029632, y: 128.2970774209691 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "70c15791-e4c8-442c-a7b9-de0967e66f3b", + label: "AWS S3 on Outposts", + type: "AWS S3 on Outposts", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS S3 on Outposts", + services: { + "70c15791-e4c8-442c-a7b9-de0967e66f3b": { + settings: { label: "S3 bucket", name: "AWS S3 on Outposts" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "e1d137e9-5d73-4faf-bae9-d717b4f48fa5", + source: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + subType: "Annotation", + target: "70c15791-e4c8-442c-a7b9-de0967e66f3b" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "70c15791-e4c8-442c-a7b9-de0967e66f3b", + label: "AWS S3 on Outposts", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + primaryColor: "#7AA116", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 9 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws s3 on outposts-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws s3 on outposts-white.svg" + }, + parent: "e81196ef-bb66-46fd-9b31-5c648552bd9e", + position: { posX: 571.567063103897, posY: 299.8032096947473 }, + whiteboardData: {} + } + }, + type: "AWS S3 on Outposts" + } + } + }, + parent: "e81196ef-bb66-46fd-9b31-5c648552bd9e" + }, + position: { x: 571.567063103897, y: 299.8032096947473 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a82b6183-e300-4f95-8afb-b0ca71354d95", + label: "AWS OpenSearch Service", + type: "AWS OpenSearch Service", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS OpenSearch Service", + services: { + "a82b6183-e300-4f95-8afb-b0ca71354d95": { + settings: { label: "OpenSearch", name: "AWS OpenSearch Service" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "a40e56a2-132a-4187-aca8-a8e9b1a72c07", + source: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb", + subType: "Annotation", + target: "a82b6183-e300-4f95-8afb-b0ca71354d95" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "ed1328e1-0cf6-4b1d-b7e8-05f2c5f2ab27", + source: "a82b6183-e300-4f95-8afb-b0ca71354d95", + subType: "Annotation", + target: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(255,192,52)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "a82b6183-e300-4f95-8afb-b0ca71354d95", + label: "AWS OpenSearch Service", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + primaryColor: "#8C4FFF", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 28 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws opensearch service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws opensearch service-white.svg" + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + position: { posX: 398.5439666158577, posY: 441.98664719537993 }, + whiteboardData: {} + } + }, + type: "AWS OpenSearch Service" + } + } + }, + parent: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + position: { x: 398.5439666158577, y: 441.98664719537993 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6acc7ded-abfe-4425-828f-01673da430bd", + label: "AWS Lambda", + type: "AWS Lambda", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Lambda", + services: { + "6acc7ded-abfe-4425-828f-01673da430bd": { + settings: { label: "Lambda Cost Function", name: "AWS Lambda" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "e88a938e-f2c2-4ca8-9191-9e44ffce03fe", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "43a60c7e-4e33-4c3a-a065-651ea9fdf8df" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "e7d173a6-cddf-4988-81a1-14859637b28d", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "ad1c7db7-68ba-4d50-b2de-c33036fc9368" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6acc7ded-abfe-4425-828f-01673da430bd", + label: "AWS Lambda", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#ED7100", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 17 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws lambda-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws lambda-white.svg" + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8", + position: { posX: 398.30007261363323, posY: 127.03599796818285 }, + whiteboardData: {} + } + }, + type: "AWS Lambda" + } + } + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + position: { x: 398.30007261363323, y: 127.03599796818285 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "43a60c7e-4e33-4c3a-a065-651ea9fdf8df", + label: "AWS S3 on Outposts", + type: "AWS S3 on Outposts", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS S3 on Outposts", + services: { + "43a60c7e-4e33-4c3a-a065-651ea9fdf8df": { + settings: { label: "Result Bucket", name: "AWS S3 on Outposts" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "e88a938e-f2c2-4ca8-9191-9e44ffce03fe", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "43a60c7e-4e33-4c3a-a065-651ea9fdf8df" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "taxi", + "haystack-radius": "0", + "line-color": "rgb(77,171,247)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "43a60c7e-4e33-4c3a-a065-651ea9fdf8df", + label: "AWS S3 on Outposts", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#7AA116", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 11 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws s3 on outposts-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws s3 on outposts-white.svg" + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8", + position: { posX: 610.6722157587719, posY: 181.18300438481998 }, + whiteboardData: {} + } + }, + type: "AWS S3 on Outposts" + } + } + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + position: { x: 610.6722157587719, y: 181.18300438481998 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + label: "AWS Athena", + type: "AWS Athena", + version: "1.0.0", + apiVersion: "core.meshery.io/v1alpha1", + meshType: "aws", + model: "aws", + config: { + name: "AWS Athena", + services: { + "ad1c7db7-68ba-4d50-b2de-c33036fc9368": { + settings: { label: "Amazon Anthena", name: "AWS Athena" }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "412b08a0-ab17-43f6-a357-2c9ce30ec8b1", + source: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + subType: "Annotation", + target: "ecec6776-80af-4617-9319-42817ba98234" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + animation: "marching-ants", + id: "e7d173a6-cddf-4988-81a1-14859637b28d", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "ad1c7db7-68ba-4d50-b2de-c33036fc9368" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "triangle", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + label: "AWS Athena", + "meshmodel-data": { + category: { metadata: null, name: "Provisioning" }, + components: null, + description: "", + displayName: "Amazon Web Services", + hostID: "9dd070a2-84d2-5b60-bb4c-6f76e631863d", + id: "bf874eb1-58c4-599d-8738-5b28293c0d22", + metadata: { + capabilities: "", + defaultData: "", + isAnnotation: true, + primaryColor: "#FF9900", + secondaryColor: "#F4BC79", + shape: "circle", + shapePolygonPoints: "", + styleOverrides: "", + styles: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws-white.svg" + }, + model: { version: "1.0.0" }, + name: "aws", + registrant: { hostname: "meshery" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "Automation & Configuration", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{ "designer": { "edit": { "config": false, "lock": true, "shape": { "convert-shape": true }, "style": true }, "label": { "edit": true, "show": true, "sync-with-config-property": "label" } } }', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + parentId: "be7b09a9-f09f-4721-8575-79833dd40cf8", + primaryColor: "#8C4FFF", + secondaryColor: "", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 15 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/aws/color/aws athena-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws/white/aws athena-white.svg" + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8", + position: { posX: 462.6671711863643, posY: 128.1141450454565 }, + whiteboardData: {} + } + }, + type: "AWS Athena" + } + } + }, + parent: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + position: { x: 462.6671711863643, y: 128.1141450454565 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + animation: "marching-ants", + id: "c40f1964-3162-4f31-8d4d-706c08287860", + source: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + subType: "Annotation", + target: "6d3a6772-3c10-48c4-abb8-94cdc2cd465a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "e1d137e9-5d73-4faf-bae9-d717b4f48fa5", + source: "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79", + subType: "Annotation", + target: "70c15791-e4c8-442c-a7b9-de0967e66f3b" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "24334889-927d-405f-a38a-cc33b8a7691b", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "0407e544-8ebd-4ac3-9e32-cc13e432168a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "5e77cc5c-c406-4c58-a3c9-dc8ccaab9879", + source: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd", + subType: "Annotation", + target: "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "e487a7a5-5fac-4999-87ef-d172be1df5fd", + source: "08bf65d5-8248-4376-b1ee-793a57ec045e", + subType: "Annotation", + target: "ecec6776-80af-4617-9319-42817ba98234" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "412b08a0-ab17-43f6-a357-2c9ce30ec8b1", + source: "ad1c7db7-68ba-4d50-b2de-c33036fc9368", + subType: "Annotation", + target: "ecec6776-80af-4617-9319-42817ba98234" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "6bfa820c-7717-44c3-abc5-d36cc544ebda", + source: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef", + subType: "Annotation", + target: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "1a856427-72f4-4d72-9391-2bfaf1905cf9", + source: "906bfe13-9220-4eb4-8165-62c1b5a4e5d6", + subType: "Annotation", + target: "8b7ec622-f5f9-4485-ab52-33c6ce6038ef" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "dc6f0268-6cf9-46b3-b690-8c7ef601506a", + source: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187", + subType: "Annotation", + target: "d93db70a-6b23-404e-b5f7-7de8c80466d5" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "9e15a841-6339-4bee-ab2e-e98306bd7ba5", + source: "d93db70a-6b23-404e-b5f7-7de8c80466d5", + subType: "Annotation", + target: "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "f88d8404-8778-4184-b4b2-a80c95e14652", + source: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3", + subType: "Annotation", + target: "e81196ef-bb66-46fd-9b31-5c648552bd9e" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "fe53a0a6-030f-4744-80ef-85bde6545fee", + source: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + subType: "Annotation", + target: "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "6d16c0d6-4086-4080-a8fe-8fbd54c986ca", + source: "4d5691d0-7395-4177-8fdd-7f6c7be59312", + subType: "Annotation", + target: "be7b09a9-f09f-4721-8575-79833dd40cf8" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "a5cc1341-062d-41ed-b180-a3e058eb30e8", + source: "6e422442-670a-4fee-b031-790bcac94b32", + subType: "Annotation", + target: "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "013745d4-6728-4a77-88c0-3e5ff2d13288", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "4d5691d0-7395-4177-8fdd-7f6c7be59312" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "2bd29128-636d-470b-896a-ce3c80d2e6ff", + source: "fe1e6f32-b123-4f1d-8714-d07f54060519", + subType: "Annotation", + target: "2d6194b0-7d7c-4a1e-8320-ad0989932670" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "aaacebea-45b7-401c-b806-476dc2c90e4e", + source: "2d6194b0-7d7c-4a1e-8320-ad0989932670", + subType: "Annotation", + target: "4a162da7-2c89-480a-aaed-e5dfdb573c98" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "a40e56a2-132a-4187-aca8-a8e9b1a72c07", + source: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb", + subType: "Annotation", + target: "a82b6183-e300-4f95-8afb-b0ca71354d95" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "ed1328e1-0cf6-4b1d-b7e8-05f2c5f2ab27", + source: "a82b6183-e300-4f95-8afb-b0ca71354d95", + subType: "Annotation", + target: "4a47c821-bcf3-4621-9f0d-1d15fab35cdb" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "e88a938e-f2c2-4ca8-9191-9e44ffce03fe", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "43a60c7e-4e33-4c3a-a065-651ea9fdf8df" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "e7d173a6-cddf-4988-81a1-14859637b28d", + source: "6acc7ded-abfe-4425-828f-01673da430bd", + subType: "Annotation", + target: "ad1c7db7-68ba-4d50-b2de-c33036fc9368" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "0407e544-8ebd-4ac3-9e32-cc13e432168a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amazon Cognito", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(221,52,76)", + backgroundColor: "rgb(221,52,76)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,62,91)", + borderColor: "rgb(255,62,91)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1Db2duaXRvXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik05LDE3IEwxNSwxNyBMMTUsMTYgTDksMTYgTDksMTcgWiBNMzEsMTMgTDMxLDkuMyBDMzEsOC41ODMgMzAuNTM1LDggMjkuOTYzLDggTDguMDM3LDggQzcuNDc1LDggNyw4LjU5NiA3LDkuMyBMNywxMyBMMTgsMTMgTDE4LDkuNSBDMTgsOS4yMjQgMTguMjI0LDkgMTguNSw5IEwyOS41LDkgQzI5Ljc3Niw5IDMwLDkuMjI0IDMwLDkuNSBMMzAsMTMgTDMxLDEzIFogTTIyLDE0IEMyMiwxNS4xMDQgMjIuODk3LDE2IDI0LDE2IEMyNS4xMDMsMTYgMjYsMTUuMTA0IDI2LDE0IEMyNiwxMi44OTcgMjUuMTAzLDEyIDI0LDEyIEMyMi44OTcsMTIgMjIsMTIuODk3IDIyLDE0IEwyMiwxNCBaIE0zMSwxNCBMMzAsMTQgTDMwLDE5IEwyOSwxOSBMMjksMTAgTDE5LDEwIEwxOSwxOC42OTYgQzE5LjY5MSwxNy41NjggMjAuNzc0LDE2LjcwNyAyMi4wOTcsMTYuMyBDMjEuNDMzLDE1Ljc1IDIxLDE0LjkyOSAyMSwxNCBDMjEsMTIuMzQ2IDIyLjM0NiwxMSAyNCwxMSBDMjUuNjU0LDExIDI3LDEyLjM0NiAyNywxNCBDMjcsMTQuOTY2IDI2LjUzMywxNS44MTcgMjUuODIzLDE2LjM2NiBDMjcuMDQyLDE2Ljc4NyAyOC4xMDgsMTcuNjA5IDI4Ljc4MSwxOC43MiBMMjcuOTI2LDE5LjIzOCBDMjcuMzM1LDE4LjI2MiAyNi4zODIsMTcuNTM0IDI1LjI5MywxNy4yMTggQzI0LjM5NiwxNy42MzcgMjMuMzQsMTcuNjMzIDIyLjQ1NywxNy4yMTggQzIwLjcwNSwxNy43MjQgMTkuNDUxLDE5LjIxNyAxOS4yMTYsMjEgTDIzLDIxIEwyMywyMiBMMTguNSwyMiBDMTguMjI0LDIyIDE4LDIxLjc3NyAxOCwyMS41IEwxOCwxNCBMNywxNCBMNywyMy43MDEgQzcsMjQuNDA1IDcuNDc1LDI1IDguMDM3LDI1IEwyMSwyNSBMMjEsMjYgTDguMDM3LDI2IEM2LjkxNCwyNiA2LDI0Ljk2OSA2LDIzLjcwMSBMNiw5LjMgQzYsOC4wMzIgNi45MTQsNyA4LjAzNyw3IEwyOS45NjMsNyBDMzEuMDg2LDcgMzIsOC4wMzIgMzIsOS4zIEwzMiwyMSBMMzEuMDAxLDIxIEwzMSwxNCBaIE0zMywyOCBDMzMsMzAuNzU3IDMwLjc1NywzMyAyOCwzMyBDMjUuMjQzLDMzIDIzLDMwLjc1NyAyMywyOCBDMjMsMjUuMjQ0IDI1LjI0MywyMyAyOCwyMyBDMzAuNzU3LDIzIDMzLDI1LjI0NCAzMywyOCBMMzMsMjggWiBNMzQsMjggQzM0LDI0LjY5MiAzMS4zMDksMjIgMjgsMjIgQzI0LjY5MSwyMiAyMiwyNC42OTIgMjIsMjggQzIyLDMxLjMwOSAyNC42OTEsMzQgMjgsMzQgQzMxLjMwOSwzNCAzNCwzMS4zMDkgMzQsMjggTDM0LDI4IFogTTI3Ljg2MiwyOS44NjIgTDMxLjU3NiwyNi4xNDkgTDMwLjg2OSwyNS40NDIgTDI3LjUwOSwyOC44MDIgTDI1Ljk5NSwyNy4yODggTDI1LjI4OCwyNy45OTUgTDI3LjE1NSwyOS44NjIgQzI3LjI0OSwyOS45NTYgMjcuMzc2LDMwLjAwOSAyNy41MDksMzAuMDA5IEMyNy42NDIsMzAuMDA5IDI3Ljc2OSwyOS45NTYgMjcuODYyLDI5Ljg2MiBMMjcuODYyLDI5Ljg2MiBaIE0xNCwyMCBMMTYsMjAgTDE2LDE5IEwxNCwxOSBMMTQsMjAgWiBNOSwyMCBMMTMsMjAgTDEzLDE5IEw5LDE5IEw5LDIwIFoiIGlkPSJBbWF6b24tQ29nbml0b19JY29uXzMyX1NxdWlkIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1Db2duaXRvXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik05LDE3IEwxNSwxNyBMMTUsMTYgTDksMTYgTDksMTcgWiBNMzEsMTMgTDMxLDkuMyBDMzEsOC41ODMgMzAuNTM1LDggMjkuOTYzLDggTDguMDM3LDggQzcuNDc1LDggNyw4LjU5NiA3LDkuMyBMNywxMyBMMTgsMTMgTDE4LDkuNSBDMTgsOS4yMjQgMTguMjI0LDkgMTguNSw5IEwyOS41LDkgQzI5Ljc3Niw5IDMwLDkuMjI0IDMwLDkuNSBMMzAsMTMgTDMxLDEzIFogTTIyLDE0IEMyMiwxNS4xMDQgMjIuODk3LDE2IDI0LDE2IEMyNS4xMDMsMTYgMjYsMTUuMTA0IDI2LDE0IEMyNiwxMi44OTcgMjUuMTAzLDEyIDI0LDEyIEMyMi44OTcsMTIgMjIsMTIuODk3IDIyLDE0IEwyMiwxNCBaIE0zMSwxNCBMMzAsMTQgTDMwLDE5IEwyOSwxOSBMMjksMTAgTDE5LDEwIEwxOSwxOC42OTYgQzE5LjY5MSwxNy41NjggMjAuNzc0LDE2LjcwNyAyMi4wOTcsMTYuMyBDMjEuNDMzLDE1Ljc1IDIxLDE0LjkyOSAyMSwxNCBDMjEsMTIuMzQ2IDIyLjM0NiwxMSAyNCwxMSBDMjUuNjU0LDExIDI3LDEyLjM0NiAyNywxNCBDMjcsMTQuOTY2IDI2LjUzMywxNS44MTcgMjUuODIzLDE2LjM2NiBDMjcuMDQyLDE2Ljc4NyAyOC4xMDgsMTcuNjA5IDI4Ljc4MSwxOC43MiBMMjcuOTI2LDE5LjIzOCBDMjcuMzM1LDE4LjI2MiAyNi4zODIsMTcuNTM0IDI1LjI5MywxNy4yMTggQzI0LjM5NiwxNy42MzcgMjMuMzQsMTcuNjMzIDIyLjQ1NywxNy4yMTggQzIwLjcwNSwxNy43MjQgMTkuNDUxLDE5LjIxNyAxOS4yMTYsMjEgTDIzLDIxIEwyMywyMiBMMTguNSwyMiBDMTguMjI0LDIyIDE4LDIxLjc3NyAxOCwyMS41IEwxOCwxNCBMNywxNCBMNywyMy43MDEgQzcsMjQuNDA1IDcuNDc1LDI1IDguMDM3LDI1IEwyMSwyNSBMMjEsMjYgTDguMDM3LDI2IEM2LjkxNCwyNiA2LDI0Ljk2OSA2LDIzLjcwMSBMNiw5LjMgQzYsOC4wMzIgNi45MTQsNyA4LjAzNyw3IEwyOS45NjMsNyBDMzEuMDg2LDcgMzIsOC4wMzIgMzIsOS4zIEwzMiwyMSBMMzEuMDAxLDIxIEwzMSwxNCBaIE0zMywyOCBDMzMsMzAuNzU3IDMwLjc1NywzMyAyOCwzMyBDMjUuMjQzLDMzIDIzLDMwLjc1NyAyMywyOCBDMjMsMjUuMjQ0IDI1LjI0MywyMyAyOCwyMyBDMzAuNzU3LDIzIDMzLDI1LjI0NCAzMywyOCBMMzMsMjggWiBNMzQsMjggQzM0LDI0LjY5MiAzMS4zMDksMjIgMjgsMjIgQzI0LjY5MSwyMiAyMiwyNC42OTIgMjIsMjggQzIyLDMxLjMwOSAyNC42OTEsMzQgMjgsMzQgQzMxLjMwOSwzNCAzNCwzMS4zMDkgMzQsMjggTDM0LDI4IFogTTI3Ljg2MiwyOS44NjIgTDMxLjU3NiwyNi4xNDkgTDMwLjg2OSwyNS40NDIgTDI3LjUwOSwyOC44MDIgTDI1Ljk5NSwyNy4yODggTDI1LjI4OCwyNy45OTUgTDI3LjE1NSwyOS44NjIgQzI3LjI0OSwyOS45NTYgMjcuMzc2LDMwLjAwOSAyNy41MDksMzAuMDA5IEMyNy42NDIsMzAuMDA5IDI3Ljc2OSwyOS45NTYgMjcuODYyLDI5Ljg2MiBMMjcuODYyLDI5Ljg2MiBaIE0xNCwyMCBMMTYsMjAgTDE2LDE5IEwxNCwxOSBMMTQsMjAgWiBNOSwyMCBMMTMsMjAgTDEzLDE5IEw5LDE5IEw5LDIwIFoiIGlkPSJBbWF6b24tQ29nbml0b19JY29uXzMyX1NxdWlkIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amazon Cognito", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "53aee2f7-f6f3-41b8-805b-d34a1b4db6c9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "22", + zIndex: "22", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amazon DynamicDB", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(201,37,209)", + backgroundColor: "rgb(201,37,209)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(241,44,250)", + borderColor: "rgb(241,44,250)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1EeW5hbW9EQl8zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8cGF0aCBkPSJNMjYuMDY2MTg1MSwzMS4wMTg1ODYzIEwyNi4wNjYxODUxLDMxLjAxNzU4NDUgTDI2LjA2NjE4NTEsMjguMTUzMjUwOSBDMjQuNTM5NzAxNSwyOS40NjA2ODU0IDIxLjM3MjI3MjcsMzAuMzIyMjg5OCAxNy41Mjc5NDE3LDMwLjMyMjI4OTggQzEzLjY4MDY1MDQsMzAuMzIyMjg5OCAxMC41MTMyMjE2LDI5LjQ1OTY4MzUgOC45ODY3Mzc5NSwyOC4xNTEyNDcxIEw4Ljk4NjczNzk1LDMxLjAxMzU3NyBMOC45ODc3MjQ2OSwzMS4wMTM1NzcgQzguOTg3NzI0NjksMzIuNDI1MjA1NiAxMi40OTQ1OTE0LDMzLjk5ODEzNDUgMTcuNTI3OTQxNywzMy45OTgxMzQ1IEMyMi41NTQzODQ4LDMzLjk5ODEzNDUgMjYuMDU4MjkxMiwzMi40MjgyMTEyIDI2LjA2NjE4NTEsMzEuMDE4NTg2MyBMMjYuMDY2MTg1MSwzMS4wMTg1ODYzIFogTTI2LjA2NzE3MTksMjIuODQ0MzY1NCBMMjcuMDUzOTA5OCwyMi44MzgzNTQyIEwyNy4wNTM5MDk4LDIyLjg0NDM2NTQgQzI3LjA1MzkwOTgsMjMuNDY4NTI3NiAyNi43NDIxMDA2LDI0LjA1MDYxMTUgMjYuMTQ4MDg0NCwyNC41ODU2MDc3IEMyNi44NzQzMjM1LDI1LjIzODgyNCAyNy4wNTM5MDk4LDI1Ljg4MDAxOCAyNy4wNTM5MDk4LDI2LjMzNTg2NjggQzI3LjA1MzkwOTgsMjYuMzM4ODcyNCAyNy4wNTI5MjMxLDI2LjM0MTg3OCAyNy4wNTI5MjMxLDI2LjM0Mzg4MTcgTDI3LjA1MjkyMzEsMzEuMDEzNTc3IEwyNy4wNTM5MDk4LDMxLjAxMzU3NyBDMjcuMDUzOTA5OCwzMy4yODU4MDgxIDIyLjk1ODk0NzMsMzUgMTcuNTI3OTQxNywzNSBDMTIuMTI0NTY0NiwzNSA4LjA0NzM2MzQyLDMzLjMwMzg0MTYgOC4wMDQ5MzM2OSwzMS4wNDg2NDIzIEM4LjAwNDkzMzY5LDMxLjAzOTYyNTUgOCwzMS4wMzI2MTI1IDgsMzEuMDIzNTk1NyBMOCwyNi4zMzM4NjMxIEM4LDI2LjMzMDg1NzUgOC4wMDE5NzM0OCwyNi4zMjg4NTM3IDguMDAxOTczNDgsMjYuMzI1ODQ4MSBDOC4wMDM5NDY5NSwyNS44NzIwMDMgOC4xODQ1MiwyNS4yMzY4MjAzIDguOTAyODY1MjIsMjQuNTg4NjEzMyBDOC4xODY0OTM0NywyMy45Mzg0MDI1IDguMDA0OTMzNjksMjMuMzA1MjIzNSA4LjAwMDk4Njc0LDIyLjg1NTM4NTkgQzguMDAwOTg2NzQsMjIuODUzMzgyMiA4LDIyLjg1MTM3ODQgOCwyMi44NDkzNzQ3IEw4LDE4LjE1OTY0MjEgQzgsMTguMTU2NjM2NSA4LjAwMTk3MzQ4LDE4LjE1MzYzMDkgOC4wMDE5NzM0OCwxOC4xNTE2MjcyIEM4LjAwMzk0Njk1LDE3LjY5Njc4MDIgOC4xODU1MDY3MywxNy4wNjE1OTc1IDguOTAzODUxOTYsMTYuNDE0MzkyMyBDOC4xODY0OTM0NywxNS43NjMxNzk3IDguMDA0OTMzNjksMTUuMTMxMDAyNiA4LjAwMDk4Njc0LDE0LjY4MDE2MzEgQzguMDAwOTg2NzQsMTQuNjc4MTU5MyA4LDE0LjY3NjE1NTYgOCwxNC42NzUxNTM3IEw4LDkuOTg0NDE5MjYgQzgsOS45Nzk0MDk5NCA4LjAwMjk2MDIxLDkuOTc2NDA0MzQgOC4wMDI5NjAyMSw5Ljk3MTM5NTAxIEM4LjAyMjY5NDk3LDcuNzA2MTc3MDIgMTIuMTA4Nzc2OCw2IDE3LjUyNzk0MTcsNiBDMjAuMTM1ODkwMSw2IDIyLjY0MjIwNDQsNi40Mjk4MDAzMiAyNC40MDE1NTgyLDcuMTc3MTkyMDEgTDI0LjAyMDY3NzQsOC4xMDE5MTM5MSBDMjIuMzc3NzU4Nyw3LjQwMjYxMTc2IDIwLjAxMDU3NDMsNy4wMDE4NjU1NCAxNy41Mjc5NDE3LDcuMDAxODY1NTQgQzEyLjQ5NDU5MTQsNy4wMDE4NjU1NCA4Ljk4NzcyNDY5LDguNTc0Nzk0NDQgOC45ODc3MjQ2OSw5Ljk4NjQyMjk5IEM4Ljk4NzcyNDY5LDExLjM5OTA1MzQgMTIuNDk0NTkxNCwxMi45NzE5ODIzIDE3LjUyNzk0MTcsMTIuOTcxOTgyMyBDMTcuNjY2MDg1LDEyLjk3Mjk4NDIgMTcuNzk2MzM0NCwxMi45NzE5ODIzIDE3LjkzMDUzMDcsMTIuOTY1OTcxMSBMMTcuOTcwOTg3LDEzLjk2NjgzNDggQzE3LjgyMjk3NjMsMTMuOTczODQ3OSAxNy42NzQ5NjU2LDEzLjk3Mzg0NzkgMTcuNTI3OTQxNywxMy45NzM4NDc5IEMxMy42ODA2NTA0LDEzLjk3Mzg0NzkgMTAuNTEzMjIxNiwxMy4xMTEyNDE2IDguOTg2NzM3OTUsMTEuODAxODAzNCBMOC45ODY3Mzc5NSwxNC42NjQxMzMyIEw4Ljk4NzcyNDY5LDE0LjY2NDEzMzIgTDguOTg3NzI0NjksMTQuNjc2MTU1NiBDOC45OTI2NTgzOCwxNS4yMjExNzA1IDkuNTMwNDMwNTYsMTUuNjk2MDU0NyA5Ljk3OTM5NjMzLDE1Ljk5NzYxNjMgQzExLjMyNzI4MDQsMTYuODg3MjcyOSAxMy43NDE4MjgxLDE3LjQ5NDQwMzQgMTYuNDMyNjYyNSwxNy42MTk2MzY2IEwxNi4zODYyODU4LDE4LjYyMDUwMDIgQzEzLjY2Mjg4OTEsMTguNDk0MjY1MiAxMS4yNzU5NywxNy45MDgxNzM4IDkuNzQwNjA1NzQsMTcuMDExNTA0MiBDOS4zNTY3NjQ2OCwxNy4zMDcwNTQ1IDguOTg3NzI0NjksMTcuNzAzNzkzMyA4Ljk4NzcyNDY5LDE4LjE2MTY0NTggQzguOTg3NzI0NjksMTkuNTczMjc0NCAxMi40OTQ1OTE0LDIxLjE0NjIwMzMgMTcuNTI3OTQxNywyMS4xNDYyMDMzIEMxOC4wMjQyNzA4LDIxLjE0NjIwMzMgMTguNTA4NzU5MiwyMS4xMjkxNzE2IDE4Ljk4MTQwNjcsMjEuMDk1MTA4MSBMMTkuMDUzNDM4NSwyMi4wOTM5NjgxIEMxOC41NTcxMDkzLDIyLjEzMDAzNTIgMTguMDQ2OTY1OCwyMi4xNDgwNjg4IDE3LjUyNzk0MTcsMjIuMTQ4MDY4OCBDMTMuNjgwNjUwNCwyMi4xNDgwNjg4IDEwLjUxMzIyMTYsMjEuMjg2NDY0NSA4Ljk4NjczNzk1LDE5Ljk3NzAyNjIgTDguOTg2NzM3OTUsMjIuODM4MzU0MiBMOC45ODc3MjQ2OSwyMi44MzgzNTQyIEM4Ljk5MjY1ODM4LDIzLjM5NjM5MzMgOS41Mjk0NDM4MiwyMy44NzEyNzc2IDkuOTc5Mzk2MzMsMjQuMTcxODM3MiBDMTEuNTE5Njk0MywyNS4xODk3MzI2IDE0LjQxMjgwOTksMjUuODIyOTExNiAxNy41Mjc5NDE3LDI1LjgyMjkxMTYgTDE3Ljc0Njk5NzUsMjUuODIyOTExNiBMMTcuNzQ2OTk3NSwyNi44MjQ3NzcyIEwxNy41Mjc5NDE3LDI2LjgyNDc3NzIgQzE0LjM2MjQ4NjMsMjYuODI0Nzc3MiAxMS40OTc5ODYsMjYuMjEyNjM3MyA5Ljc0MTU5MjQ4LDI1LjE4MzcyMTQgQzkuMzU3NzUxNDIsMjUuNDc5MjcxNyA4Ljk4NzcyNDY5LDI1Ljg3NzAxMjQgOC45ODc3MjQ2OSwyNi4zMzU4NjY4IEM4Ljk4NzcyNDY5LDI3Ljc0NzQ5NTMgMTIuNDk0NTkxNCwyOS4zMjA0MjQyIDE3LjUyNzk0MTcsMjkuMzIwNDI0MiBDMjIuNTUyNDExMywyOS4zMjA0MjQyIDI2LjA1NTMzMSwyNy43NTI1MDQ3IDI2LjA2NjE4NTEsMjYuMzQxODc4IEwyNi4wNjYxODUxLDI2LjMzMzg2MzEgTDI2LjA2NjE4NTEsMjYuMzMyODYxMiBDMjYuMDY1MTk4NCwyNS44NzgwMTQyIDI1LjY5OTExODYsMjUuNDgyMjc3MyAyNS4zMTcyNTEsMjUuMTg3NzI4OSBDMjUuMDczNTI2OCwyNS4zMzA5OTU2IDI0LjgxMjA0MTIsMjUuNDY4MjUxMiAyNC41MTYwMTk4LDI1LjU5NDQ4NjMgTDI0LjEzNDE1MjIsMjQuNjcxNzY4MSBDMjQuNDk2Mjg1MSwyNC41MTY0NzkgMjQuODEyMDQxMiwyNC4zNDkxNjc0IDI1LjA3MjU0LDI0LjE3MjgzOTEgQzI1LjUyNjQzOTUsMjMuODY2MjY4MiAyNi4wNjcxNzE5LDIzLjM4NjM3NDYgMjYuMDY3MTcxOSwyMi44NDQzNjU0IEwyNi4wNjcxNzE5LDIyLjg0NDM2NTQgWiBNMzEuMzU1MTAwNiwxNC40ODg4MDY3IEwyOC4wNzIyMjM0LDE0LjQ4ODgwNjcgQzI3LjkxMzM1ODYsMTQuNDg4ODA2NyAyNy43NjQzNjExLDE0LjQxMDY2MTIgMjcuNjcxNjA3OCwxNC4yNzk0MTY4IEMyNy41Nzg4NTQ0LDE0LjE0ODE3MjUgMjcuNTU0MTg2LDEzLjk3OTg1OSAyNy42MDU0OTYzLDEzLjgyNjU3MzYgTDI5LjA1OTk0ODEsOS40Nzk0NzkwMyBMMjIuNTMxNjg5OCw5LjQ3OTQ3OTAzIEwxOS40MTA2Mzc3LDE1LjQ5MDY3MjMgTDIyLjU4MDA0LDE1LjQ5MDY3MjMgQzIyLjczMzk3MTEsMTUuNDkwNjcyMyAyMi44NzkwMjE2LDE1LjU2MzgwODUgMjIuOTcxNzc0OSwxNS42ODgwMzk4IEMyMy4wNjU1MTUsMTUuODExMjY5MyAyMy4wOTYxMDM5LDE1Ljk3MjU2OTYgMjMuMDU1NjQ3NiwxNi4xMjM4NTEzIEwyMC4zMzgxNzEzLDI2LjIzMTY3MjggTDMxLjM1NTEwMDYsMTQuNDg4ODA2NyBaIE0zMi44NjQ4MDk2LDE0LjMzMzUxNzYgTDE5LjcwNTY3MjMsMjguMzU5NjM1MiBDMTkuNjA4OTcyLDI4LjQ2MTgyNTUgMTkuNDc4NzIyNiwyOC41MTQ5MjQzIDE5LjM0NzQ4NjQsMjguNTE0OTI0MyBDMTkuMjY0NjAwNCwyOC41MTQ5MjQzIDE5LjE4MDcyNzcsMjguNDkzODg1MiAxOS4xMDQ3NDg5LDI4LjQ1MDgwNDkgQzE4LjkwODM4OCwyOC4zMzc1OTQxIDE4LjgxMTY4NzcsMjguMTAzMTU3NiAxOC44NzE4Nzg3LDI3Ljg4MTc0NTMgTDIxLjkzNDcxMzMsMTYuNDkyNTM3OCBMMTguNTkyNjMxOSwxNi40OTI1Mzc4IEMxOC40MTk5NTI4LDE2LjQ5MjUzNzggMTguMjU5MTE0NSwxNi40MDAzNjYyIDE4LjE3MDMwODEsMTYuMjUwMDg2NCBDMTguMDgwNTE0OSwxNi4wOTk4MDY1IDE4LjA3NDU5NDUsMTUuOTEzNDU5NSAxOC4xNTU1MDcsMTUuNzU4MTcwNCBMMjEuNzk3NTU2OCw4Ljc0NTExMTU5IEMyMS44ODM0MDMsOC41ODA4MDU2NCAyMi4wNTExNDg0LDguNDc3NjEzNDkgMjIuMjMzNjk0OSw4LjQ3NzYxMzQ5IEwyOS43NDg2OTEyLDguNDc3NjEzNDkgQzI5LjkwODU0MjcsOC40Nzc2MTM0OSAzMC4wNTc1NDAxLDguNTU1NzU5IDMwLjE1MDI5MzUsOC42ODcwMDMzOSBDMzAuMjQyMDYwMSw4LjgxODI0Nzc3IDMwLjI2NzcxNTMsOC45ODY1NjExOCAzMC4yMTY0MDUsOS4xMzk4NDY2MSBMMjguNzYwOTY2NSwxMy40ODY5NDEyIEwzMi41MDY2MjM3LDEzLjQ4Njk0MTIgQzMyLjcwNDk1ODEsMTMuNDg2OTQxMiAzMi44ODI1NzA5LDEzLjYwNjE2MzIgMzIuOTYwNTIzMiwxMy43OTA1MDY1IEMzMy4wMzc0ODg4LDEzLjk3NDg0OTcgMzMsMTQuMTg4MjQ3MSAzMi44NjQ4MDk2LDE0LjMzMzUxNzYgTDMyLjg2NDgwOTYsMTQuMzMzNTE3NiBaIE05LjcyNzc3ODE1LDMxLjA0MDYyNzQgQzEwLjI5OTA5OTQsMzEuMzczMjQ2NyAxMC45OTg2OTY2LDMxLjY2Njc5MzMgMTEuODA2ODM1LDMxLjkxMTI0ODUgTDEyLjA4ODA1NTMsMzAuOTUxNDYxMyBDMTEuMzUzOTIyMywzMC43MjkwNDcyIDEwLjcyNTM3MDIsMzAuNDY2NTU4NCAxMC4yMTkxNzM3LDMwLjE3MjAwOTkgTDkuNzI3Nzc4MTUsMzEuMDQwNjI3NCBaIE0xMS44MDY4MzUsMjMuODA5MTYxOSBMMTIuMDg4MDU1MywyMi44NDkzNzQ3IEMxMS4zNTU4OTU4LDIyLjYyNzk2MjQgMTAuNzI3MzQzNywyMi4zNjU0NzM2IDEwLjIxOTE3MzcsMjIuMDY4OTIxNCBMOS43Mjc3NzgxNSwyMi45Mzg1NDA3IEMxMC4zMDEwNzI5LDIzLjI3MzE2MzggMTEuMDAwNjcwMSwyMy41NjU3MDg2IDExLjgwNjgzNSwyMy44MDkxNjE5IEwxMS44MDY4MzUsMjMuODA5MTYxOSBaIE05LjcyNzc3ODE1LDE0LjgzNTQ1MjIgTDEwLjIxOTE3MzcsMTMuOTY2ODM0OCBDMTAuNzI0MzgzNSwxNC4yNjEzODMzIDExLjM1MzkyMjMsMTQuNTI0ODczOSAxMi4wODgwNTUzLDE0Ljc0NzI4ODEgTDExLjgwNjgzNSwxNS43MDcwNzUyIEMxMC45OTc3MDk5LDE1LjQ2MjYyMDEgMTAuMjk5MDk5NCwxNS4xNjkwNzM0IDkuNzI3Nzc4MTUsMTQuODM1NDUyMiBMOS43Mjc3NzgxNSwxNC44MzU0NTIyIFoiIGlkPSJBbWF6b24tRHluYW1vREJfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1EeW5hbW9EQl8zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8cGF0aCBkPSJNMjYuMDY2MTg1MSwzMS4wMTg1ODYzIEwyNi4wNjYxODUxLDMxLjAxNzU4NDUgTDI2LjA2NjE4NTEsMjguMTUzMjUwOSBDMjQuNTM5NzAxNSwyOS40NjA2ODU0IDIxLjM3MjI3MjcsMzAuMzIyMjg5OCAxNy41Mjc5NDE3LDMwLjMyMjI4OTggQzEzLjY4MDY1MDQsMzAuMzIyMjg5OCAxMC41MTMyMjE2LDI5LjQ1OTY4MzUgOC45ODY3Mzc5NSwyOC4xNTEyNDcxIEw4Ljk4NjczNzk1LDMxLjAxMzU3NyBMOC45ODc3MjQ2OSwzMS4wMTM1NzcgQzguOTg3NzI0NjksMzIuNDI1MjA1NiAxMi40OTQ1OTE0LDMzLjk5ODEzNDUgMTcuNTI3OTQxNywzMy45OTgxMzQ1IEMyMi41NTQzODQ4LDMzLjk5ODEzNDUgMjYuMDU4MjkxMiwzMi40MjgyMTEyIDI2LjA2NjE4NTEsMzEuMDE4NTg2MyBMMjYuMDY2MTg1MSwzMS4wMTg1ODYzIFogTTI2LjA2NzE3MTksMjIuODQ0MzY1NCBMMjcuMDUzOTA5OCwyMi44MzgzNTQyIEwyNy4wNTM5MDk4LDIyLjg0NDM2NTQgQzI3LjA1MzkwOTgsMjMuNDY4NTI3NiAyNi43NDIxMDA2LDI0LjA1MDYxMTUgMjYuMTQ4MDg0NCwyNC41ODU2MDc3IEMyNi44NzQzMjM1LDI1LjIzODgyNCAyNy4wNTM5MDk4LDI1Ljg4MDAxOCAyNy4wNTM5MDk4LDI2LjMzNTg2NjggQzI3LjA1MzkwOTgsMjYuMzM4ODcyNCAyNy4wNTI5MjMxLDI2LjM0MTg3OCAyNy4wNTI5MjMxLDI2LjM0Mzg4MTcgTDI3LjA1MjkyMzEsMzEuMDEzNTc3IEwyNy4wNTM5MDk4LDMxLjAxMzU3NyBDMjcuMDUzOTA5OCwzMy4yODU4MDgxIDIyLjk1ODk0NzMsMzUgMTcuNTI3OTQxNywzNSBDMTIuMTI0NTY0NiwzNSA4LjA0NzM2MzQyLDMzLjMwMzg0MTYgOC4wMDQ5MzM2OSwzMS4wNDg2NDIzIEM4LjAwNDkzMzY5LDMxLjAzOTYyNTUgOCwzMS4wMzI2MTI1IDgsMzEuMDIzNTk1NyBMOCwyNi4zMzM4NjMxIEM4LDI2LjMzMDg1NzUgOC4wMDE5NzM0OCwyNi4zMjg4NTM3IDguMDAxOTczNDgsMjYuMzI1ODQ4MSBDOC4wMDM5NDY5NSwyNS44NzIwMDMgOC4xODQ1MiwyNS4yMzY4MjAzIDguOTAyODY1MjIsMjQuNTg4NjEzMyBDOC4xODY0OTM0NywyMy45Mzg0MDI1IDguMDA0OTMzNjksMjMuMzA1MjIzNSA4LjAwMDk4Njc0LDIyLjg1NTM4NTkgQzguMDAwOTg2NzQsMjIuODUzMzgyMiA4LDIyLjg1MTM3ODQgOCwyMi44NDkzNzQ3IEw4LDE4LjE1OTY0MjEgQzgsMTguMTU2NjM2NSA4LjAwMTk3MzQ4LDE4LjE1MzYzMDkgOC4wMDE5NzM0OCwxOC4xNTE2MjcyIEM4LjAwMzk0Njk1LDE3LjY5Njc4MDIgOC4xODU1MDY3MywxNy4wNjE1OTc1IDguOTAzODUxOTYsMTYuNDE0MzkyMyBDOC4xODY0OTM0NywxNS43NjMxNzk3IDguMDA0OTMzNjksMTUuMTMxMDAyNiA4LjAwMDk4Njc0LDE0LjY4MDE2MzEgQzguMDAwOTg2NzQsMTQuNjc4MTU5MyA4LDE0LjY3NjE1NTYgOCwxNC42NzUxNTM3IEw4LDkuOTg0NDE5MjYgQzgsOS45Nzk0MDk5NCA4LjAwMjk2MDIxLDkuOTc2NDA0MzQgOC4wMDI5NjAyMSw5Ljk3MTM5NTAxIEM4LjAyMjY5NDk3LDcuNzA2MTc3MDIgMTIuMTA4Nzc2OCw2IDE3LjUyNzk0MTcsNiBDMjAuMTM1ODkwMSw2IDIyLjY0MjIwNDQsNi40Mjk4MDAzMiAyNC40MDE1NTgyLDcuMTc3MTkyMDEgTDI0LjAyMDY3NzQsOC4xMDE5MTM5MSBDMjIuMzc3NzU4Nyw3LjQwMjYxMTc2IDIwLjAxMDU3NDMsNy4wMDE4NjU1NCAxNy41Mjc5NDE3LDcuMDAxODY1NTQgQzEyLjQ5NDU5MTQsNy4wMDE4NjU1NCA4Ljk4NzcyNDY5LDguNTc0Nzk0NDQgOC45ODc3MjQ2OSw5Ljk4NjQyMjk5IEM4Ljk4NzcyNDY5LDExLjM5OTA1MzQgMTIuNDk0NTkxNCwxMi45NzE5ODIzIDE3LjUyNzk0MTcsMTIuOTcxOTgyMyBDMTcuNjY2MDg1LDEyLjk3Mjk4NDIgMTcuNzk2MzM0NCwxMi45NzE5ODIzIDE3LjkzMDUzMDcsMTIuOTY1OTcxMSBMMTcuOTcwOTg3LDEzLjk2NjgzNDggQzE3LjgyMjk3NjMsMTMuOTczODQ3OSAxNy42NzQ5NjU2LDEzLjk3Mzg0NzkgMTcuNTI3OTQxNywxMy45NzM4NDc5IEMxMy42ODA2NTA0LDEzLjk3Mzg0NzkgMTAuNTEzMjIxNiwxMy4xMTEyNDE2IDguOTg2NzM3OTUsMTEuODAxODAzNCBMOC45ODY3Mzc5NSwxNC42NjQxMzMyIEw4Ljk4NzcyNDY5LDE0LjY2NDEzMzIgTDguOTg3NzI0NjksMTQuNjc2MTU1NiBDOC45OTI2NTgzOCwxNS4yMjExNzA1IDkuNTMwNDMwNTYsMTUuNjk2MDU0NyA5Ljk3OTM5NjMzLDE1Ljk5NzYxNjMgQzExLjMyNzI4MDQsMTYuODg3MjcyOSAxMy43NDE4MjgxLDE3LjQ5NDQwMzQgMTYuNDMyNjYyNSwxNy42MTk2MzY2IEwxNi4zODYyODU4LDE4LjYyMDUwMDIgQzEzLjY2Mjg4OTEsMTguNDk0MjY1MiAxMS4yNzU5NywxNy45MDgxNzM4IDkuNzQwNjA1NzQsMTcuMDExNTA0MiBDOS4zNTY3NjQ2OCwxNy4zMDcwNTQ1IDguOTg3NzI0NjksMTcuNzAzNzkzMyA4Ljk4NzcyNDY5LDE4LjE2MTY0NTggQzguOTg3NzI0NjksMTkuNTczMjc0NCAxMi40OTQ1OTE0LDIxLjE0NjIwMzMgMTcuNTI3OTQxNywyMS4xNDYyMDMzIEMxOC4wMjQyNzA4LDIxLjE0NjIwMzMgMTguNTA4NzU5MiwyMS4xMjkxNzE2IDE4Ljk4MTQwNjcsMjEuMDk1MTA4MSBMMTkuMDUzNDM4NSwyMi4wOTM5NjgxIEMxOC41NTcxMDkzLDIyLjEzMDAzNTIgMTguMDQ2OTY1OCwyMi4xNDgwNjg4IDE3LjUyNzk0MTcsMjIuMTQ4MDY4OCBDMTMuNjgwNjUwNCwyMi4xNDgwNjg4IDEwLjUxMzIyMTYsMjEuMjg2NDY0NSA4Ljk4NjczNzk1LDE5Ljk3NzAyNjIgTDguOTg2NzM3OTUsMjIuODM4MzU0MiBMOC45ODc3MjQ2OSwyMi44MzgzNTQyIEM4Ljk5MjY1ODM4LDIzLjM5NjM5MzMgOS41Mjk0NDM4MiwyMy44NzEyNzc2IDkuOTc5Mzk2MzMsMjQuMTcxODM3MiBDMTEuNTE5Njk0MywyNS4xODk3MzI2IDE0LjQxMjgwOTksMjUuODIyOTExNiAxNy41Mjc5NDE3LDI1LjgyMjkxMTYgTDE3Ljc0Njk5NzUsMjUuODIyOTExNiBMMTcuNzQ2OTk3NSwyNi44MjQ3NzcyIEwxNy41Mjc5NDE3LDI2LjgyNDc3NzIgQzE0LjM2MjQ4NjMsMjYuODI0Nzc3MiAxMS40OTc5ODYsMjYuMjEyNjM3MyA5Ljc0MTU5MjQ4LDI1LjE4MzcyMTQgQzkuMzU3NzUxNDIsMjUuNDc5MjcxNyA4Ljk4NzcyNDY5LDI1Ljg3NzAxMjQgOC45ODc3MjQ2OSwyNi4zMzU4NjY4IEM4Ljk4NzcyNDY5LDI3Ljc0NzQ5NTMgMTIuNDk0NTkxNCwyOS4zMjA0MjQyIDE3LjUyNzk0MTcsMjkuMzIwNDI0MiBDMjIuNTUyNDExMywyOS4zMjA0MjQyIDI2LjA1NTMzMSwyNy43NTI1MDQ3IDI2LjA2NjE4NTEsMjYuMzQxODc4IEwyNi4wNjYxODUxLDI2LjMzMzg2MzEgTDI2LjA2NjE4NTEsMjYuMzMyODYxMiBDMjYuMDY1MTk4NCwyNS44NzgwMTQyIDI1LjY5OTExODYsMjUuNDgyMjc3MyAyNS4zMTcyNTEsMjUuMTg3NzI4OSBDMjUuMDczNTI2OCwyNS4zMzA5OTU2IDI0LjgxMjA0MTIsMjUuNDY4MjUxMiAyNC41MTYwMTk4LDI1LjU5NDQ4NjMgTDI0LjEzNDE1MjIsMjQuNjcxNzY4MSBDMjQuNDk2Mjg1MSwyNC41MTY0NzkgMjQuODEyMDQxMiwyNC4zNDkxNjc0IDI1LjA3MjU0LDI0LjE3MjgzOTEgQzI1LjUyNjQzOTUsMjMuODY2MjY4MiAyNi4wNjcxNzE5LDIzLjM4NjM3NDYgMjYuMDY3MTcxOSwyMi44NDQzNjU0IEwyNi4wNjcxNzE5LDIyLjg0NDM2NTQgWiBNMzEuMzU1MTAwNiwxNC40ODg4MDY3IEwyOC4wNzIyMjM0LDE0LjQ4ODgwNjcgQzI3LjkxMzM1ODYsMTQuNDg4ODA2NyAyNy43NjQzNjExLDE0LjQxMDY2MTIgMjcuNjcxNjA3OCwxNC4yNzk0MTY4IEMyNy41Nzg4NTQ0LDE0LjE0ODE3MjUgMjcuNTU0MTg2LDEzLjk3OTg1OSAyNy42MDU0OTYzLDEzLjgyNjU3MzYgTDI5LjA1OTk0ODEsOS40Nzk0NzkwMyBMMjIuNTMxNjg5OCw5LjQ3OTQ3OTAzIEwxOS40MTA2Mzc3LDE1LjQ5MDY3MjMgTDIyLjU4MDA0LDE1LjQ5MDY3MjMgQzIyLjczMzk3MTEsMTUuNDkwNjcyMyAyMi44NzkwMjE2LDE1LjU2MzgwODUgMjIuOTcxNzc0OSwxNS42ODgwMzk4IEMyMy4wNjU1MTUsMTUuODExMjY5MyAyMy4wOTYxMDM5LDE1Ljk3MjU2OTYgMjMuMDU1NjQ3NiwxNi4xMjM4NTEzIEwyMC4zMzgxNzEzLDI2LjIzMTY3MjggTDMxLjM1NTEwMDYsMTQuNDg4ODA2NyBaIE0zMi44NjQ4MDk2LDE0LjMzMzUxNzYgTDE5LjcwNTY3MjMsMjguMzU5NjM1MiBDMTkuNjA4OTcyLDI4LjQ2MTgyNTUgMTkuNDc4NzIyNiwyOC41MTQ5MjQzIDE5LjM0NzQ4NjQsMjguNTE0OTI0MyBDMTkuMjY0NjAwNCwyOC41MTQ5MjQzIDE5LjE4MDcyNzcsMjguNDkzODg1MiAxOS4xMDQ3NDg5LDI4LjQ1MDgwNDkgQzE4LjkwODM4OCwyOC4zMzc1OTQxIDE4LjgxMTY4NzcsMjguMTAzMTU3NiAxOC44NzE4Nzg3LDI3Ljg4MTc0NTMgTDIxLjkzNDcxMzMsMTYuNDkyNTM3OCBMMTguNTkyNjMxOSwxNi40OTI1Mzc4IEMxOC40MTk5NTI4LDE2LjQ5MjUzNzggMTguMjU5MTE0NSwxNi40MDAzNjYyIDE4LjE3MDMwODEsMTYuMjUwMDg2NCBDMTguMDgwNTE0OSwxNi4wOTk4MDY1IDE4LjA3NDU5NDUsMTUuOTEzNDU5NSAxOC4xNTU1MDcsMTUuNzU4MTcwNCBMMjEuNzk3NTU2OCw4Ljc0NTExMTU5IEMyMS44ODM0MDMsOC41ODA4MDU2NCAyMi4wNTExNDg0LDguNDc3NjEzNDkgMjIuMjMzNjk0OSw4LjQ3NzYxMzQ5IEwyOS43NDg2OTEyLDguNDc3NjEzNDkgQzI5LjkwODU0MjcsOC40Nzc2MTM0OSAzMC4wNTc1NDAxLDguNTU1NzU5IDMwLjE1MDI5MzUsOC42ODcwMDMzOSBDMzAuMjQyMDYwMSw4LjgxODI0Nzc3IDMwLjI2NzcxNTMsOC45ODY1NjExOCAzMC4yMTY0MDUsOS4xMzk4NDY2MSBMMjguNzYwOTY2NSwxMy40ODY5NDEyIEwzMi41MDY2MjM3LDEzLjQ4Njk0MTIgQzMyLjcwNDk1ODEsMTMuNDg2OTQxMiAzMi44ODI1NzA5LDEzLjYwNjE2MzIgMzIuOTYwNTIzMiwxMy43OTA1MDY1IEMzMy4wMzc0ODg4LDEzLjk3NDg0OTcgMzMsMTQuMTg4MjQ3MSAzMi44NjQ4MDk2LDE0LjMzMzUxNzYgTDMyLjg2NDgwOTYsMTQuMzMzNTE3NiBaIE05LjcyNzc3ODE1LDMxLjA0MDYyNzQgQzEwLjI5OTA5OTQsMzEuMzczMjQ2NyAxMC45OTg2OTY2LDMxLjY2Njc5MzMgMTEuODA2ODM1LDMxLjkxMTI0ODUgTDEyLjA4ODA1NTMsMzAuOTUxNDYxMyBDMTEuMzUzOTIyMywzMC43MjkwNDcyIDEwLjcyNTM3MDIsMzAuNDY2NTU4NCAxMC4yMTkxNzM3LDMwLjE3MjAwOTkgTDkuNzI3Nzc4MTUsMzEuMDQwNjI3NCBaIE0xMS44MDY4MzUsMjMuODA5MTYxOSBMMTIuMDg4MDU1MywyMi44NDkzNzQ3IEMxMS4zNTU4OTU4LDIyLjYyNzk2MjQgMTAuNzI3MzQzNywyMi4zNjU0NzM2IDEwLjIxOTE3MzcsMjIuMDY4OTIxNCBMOS43Mjc3NzgxNSwyMi45Mzg1NDA3IEMxMC4zMDEwNzI5LDIzLjI3MzE2MzggMTEuMDAwNjcwMSwyMy41NjU3MDg2IDExLjgwNjgzNSwyMy44MDkxNjE5IEwxMS44MDY4MzUsMjMuODA5MTYxOSBaIE05LjcyNzc3ODE1LDE0LjgzNTQ1MjIgTDEwLjIxOTE3MzcsMTMuOTY2ODM0OCBDMTAuNzI0MzgzNSwxNC4yNjEzODMzIDExLjM1MzkyMjMsMTQuNTI0ODczOSAxMi4wODgwNTUzLDE0Ljc0NzI4ODEgTDExLjgwNjgzNSwxNS43MDcwNzUyIEMxMC45OTc3MDk5LDE1LjQ2MjYyMDEgMTAuMjk5MDk5NCwxNS4xNjkwNzM0IDkuNzI3Nzc4MTUsMTQuODM1NDUyMiBMOS43Mjc3NzgxNSwxNC44MzU0NTIyIFoiIGlkPSJBbWF6b24tRHluYW1vREJfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amazon DynamicDB", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ccfa07d4-c955-4a32-a5c8-c7cda3a25ac3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "29", + zIndex: "29", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Data Component", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(255,192,52)", + backgroundColor: "rgb(255,192,52)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,192,52)", + borderColor: "rgb(255,192,52)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Data Component", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "be7b09a9-f09f-4721-8575-79833dd40cf8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "27", + zIndex: "27", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Cost Component", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(66,99,235)", + backgroundColor: "rgb(66,99,235)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(66,99,235)", + borderColor: "rgb(66,99,235)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Cost Component", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2d6194b0-7d7c-4a1e-8320-ad0989932670": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "7", + zIndex: "7", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "S3 bucket", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(122,161,22)", + backgroundColor: "rgb(122,161,22)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(146,193,26)", + borderColor: "rgb(146,193,26)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "S3 bucket", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4a162da7-2c89-480a-aaed-e5dfdb573c98": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "25", + zIndex: "25", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Store Management components3", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(255,192,52)", + backgroundColor: "rgb(255,192,52)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,192,52)", + borderColor: "rgb(255,192,52)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Store Management components3", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "fe1e6f32-b123-4f1d-8714-d07f54060519": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "14", + zIndex: "14", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Cloudfront", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(140,79,255)", + backgroundColor: "rgb(140,79,255)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(168,94,255)", + borderColor: "rgb(168,94,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1DbG91ZEZyb250XzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yOCwyNi40OTY4MzQzIEMyOCwyNS42Njk0ODUyIDI3LjMyNywyNC45OTYyMDEyIDI2LjUsMjQuOTk2MjAxMiBDMjUuNjczLDI0Ljk5NjIwMTIgMjUsMjUuNjY5NDg1MiAyNSwyNi40OTY4MzQzIEMyNSwyNy4zMjQxODM0IDI1LjY3MywyNy45OTc0Njc1IDI2LjUsMjcuOTk3NDY3NSBDMjcuMzI3LDI3Ljk5NzQ2NzUgMjgsMjcuMzI0MTgzNCAyOCwyNi40OTY4MzQzIEwyOCwyNi40OTY4MzQzIFogTTI5LDI2LjQ5NjgzNDMgQzI5LDI3Ljg3NTQxNiAyNy44NzksMjguOTk3ODg5NSAyNi41LDI4Ljk5Nzg4OTUgQzI1LjEyMSwyOC45OTc4ODk1IDI0LDI3Ljg3NTQxNiAyNCwyNi40OTY4MzQzIEMyNCwyNS4xMTgyNTI3IDI1LjEyMSwyMy45OTU3NzkxIDI2LjUsMjMuOTk1Nzc5MSBDMjcuODc5LDIzLjk5NTc3OTEgMjksMjUuMTE4MjUyNyAyOSwyNi40OTY4MzQzIEwyOSwyNi40OTY4MzQzIFogTTE1LDE4LjQ5MzQ1NzYgQzE1LDE3LjY2NjEwODUgMTQuMzI3LDE2Ljk5MjgyNDQgMTMuNSwxNi45OTI4MjQ0IEMxMi42NzMsMTYuOTkyODI0NCAxMiwxNy42NjYxMDg1IDEyLDE4LjQ5MzQ1NzYgQzEyLDE5LjMyMDgwNjcgMTIuNjczLDE5Ljk5NDA5MDcgMTMuNSwxOS45OTQwOTA3IEMxNC4zMjcsMTkuOTk0MDkwNyAxNSwxOS4zMjA4MDY3IDE1LDE4LjQ5MzQ1NzYgTDE1LDE4LjQ5MzQ1NzYgWiBNMTYsMTguNDkzNDU3NiBDMTYsMTkuODcyMDM5MiAxNC44NzksMjAuOTk0NTEyOCAxMy41LDIwLjk5NDUxMjggQzEyLjEyMSwyMC45OTQ1MTI4IDExLDE5Ljg3MjAzOTIgMTEsMTguNDkzNDU3NiBDMTEsMTcuMTE0ODc1OSAxMi4xMjEsMTUuOTkyNDAyNCAxMy41LDE1Ljk5MjQwMjQgQzE0Ljg3OSwxNS45OTI0MDI0IDE2LDE3LjExNDg3NTkgMTYsMTguNDkzNDU3NiBMMTYsMTguNDkzNDU3NiBaIE0yMCwxMC40OTAwODA4IEMyMCwxMS4zMTc0Mjk5IDIwLjY3MywxMS45OTA3MTQgMjEuNSwxMS45OTA3MTQgQzIyLjMyNywxMS45OTA3MTQgMjMsMTEuMzE3NDI5OSAyMywxMC40OTAwODA4IEMyMyw5LjY2MjczMTc4IDIyLjMyNyw4Ljk4OTQ0NzcxIDIxLjUsOC45ODk0NDc3MSBDMjAuNjczLDguOTg5NDQ3NzEgMjAsOS42NjI3MzE3OCAyMCwxMC40OTAwODA4IEwyMCwxMC40OTAwODA4IFogTTE5LDEwLjQ5MDA4MDggQzE5LDkuMTExNDk5MjEgMjAuMTIxLDcuOTg5MDI1NjIgMjEuNSw3Ljk4OTAyNTYyIEMyMi44NzksNy45ODkwMjU2MiAyNCw5LjExMTQ5OTIxIDI0LDEwLjQ5MDA4MDggQzI0LDExLjg2ODY2MjUgMjIuODc5LDEyLjk5MTEzNjEgMjEuNSwxMi45OTExMzYxIEMyMC4xMjEsMTIuOTkxMTM2MSAxOSwxMS44Njg2NjI1IDE5LDEwLjQ5MDA4MDggTDE5LDEwLjQ5MDA4MDggWiBNMzMsMTkuOTk0MDkwNyBDMzMsMTUuMzU2MTMzOSAzMC41MTUsMTEuMDY0MzIzMSAyNi41MDYsOC43NDMzNDM4OCBDMjUuNzg1LDguODg5NDA1NSAyNS4wOSw5LjA4ODQ4OTUgMjQuMjI2LDkuNDAwNjIxMTkgTDIzLjg4Niw4LjQ2MDIyNDQyIEMyNC4zMzIsOC4yOTkxNTY0NyAyNC43MzIsOC4xNjgxMDExNyAyNS4xMTksOC4wNTYwNTM5IEMyMy41MTIsNy4zNjM3NjE4MSAyMS43NzEsNi45ODg2MDM1MyAyMCw2Ljk4ODYwMzUzIEMxOS4xNTYsNi45ODg2MDM1MyAxOC4zMjUsNy4wNzU2NDAyNSAxNy41MTMsNy4yMzQ3MDczNiBDMTguMSw3LjU3Nzg1MjE0IDE4LjYyMSw3LjkyMDk5NjkyIDE5LjEyOCw4LjMwNjE1OTQyIEwxOC41MjQsOS4xMDM0OTU4MyBDMTcuODA5LDguNTYwMjY2NjMgMTcuMDY3LDguMTAyMDczMzIgMTYuMDk4LDcuNTkzODU4ODkgQzExLjE4OCw5LjEzODUxMDYgNy42NTIsMTMuNDcwMzM4MyA3LjA5MSwxOC41NTY0ODQyIEM4LjEyMSwxOC4zNDgzOTY0IDkuMTA5LDE4LjIzNTM0ODcgMTAuMjA3LDE4LjIwNzMzNjkgTDEwLjIzMiwxOS4yMDc3NTkgQzkuMDgxLDE5LjIzNjc3MTIgOC4wOTQsMTkuMzU4ODIyNyA3LjAxNCwxOS41OTU5MjI3IEM3LjAxLDE5LjcyNzk3ODQgNywxOS44NjMwMzU0IDcsMTkuOTk0MDkwNyBDNywyNC4zMjg5MTk2IDkuMTQ2LDI4LjMyNDYwNTUgMTIuNjc2LDMwLjcyOTYyMDIgQzEyLjA0OSwyOC44NjA4MzE3IDExLjcyNiwyNy4wOTIwODU1IDExLjcyNiwyNS4zNjkzNTg2IEMxMS43MjYsMjQuMzg0OTQzMyAxMS44OTUsMjMuNTc2NjAyMiAxMi4wNzMsMjIuNzIxMjQxMyBMMTIuMTk3LDIyLjExODk4NzIgTDEzLjE3OCwyMi4zMTIwNjg3IEwxMy4wNTMsMjIuOTI2MzI3OSBDMTIuODc3LDIzLjc2NDY4MTYgMTIuNzI2LDI0LjQ4Nzk4NjggMTIuNzI2LDI1LjM2OTM1ODYgQzEyLjcyNiwyNy4zMjExODIxIDEzLjE1OCwyOS4zNDIwMzQ3IDE0LjAyOCwzMS41MzQ5NiBDMTUuODg5LDMyLjUwMDM2NzMgMTcuODk1LDMyLjk5OTU3NzkgMjAsMzIuOTk5NTc3OSBDMjEuMzc5LDMyLjk5OTU3NzkgMjIuNzI0LDMyLjc3ODQ4NDYgMjQuMDA2LDMyLjM1NjMwNjUgQzI0LjUwOCwzMS4zNjY4ODkxIDI0Ljg4MSwzMC40Mjk0OTM2IDI1LjE5NSwyOS4zNDcwMzY5IEwyNi4xNTYsMjkuNjI2MTU0NiBDMjUuOTI4LDMwLjQxNDQ4NzIgMjUuNjY2LDMxLjEyNzc4ODIgMjUuMzU1LDMxLjgzNzA4NzQgQzI2LjE1OSwzMS40NzU5MzUxIDI2LjkxOSwzMS4wMjc3NDYgMjcuNjM0LDMwLjUwNjUyNjEgQzI3LjQ2MSwzMC4wODEzNDY3IDI3LjI4NCwyOS42NTcxNjc3IDI3LjA4LDI5LjI0Njk5NDYgTDI3Ljk3NSwyOC44MDA4MDY0IEMyOC4xNDYsMjkuMTQzOTUxMiAyOC4yODgsMjkuNTAyMTAyMyAyOC40MzgsMjkuODU1MjUxMyBDMzEuMzM1LDI3LjM3NzIwNTggMzMsMjMuODI4NzA4NiAzMywxOS45OTQwOTA3IEwzMywxOS45OTQwOTA3IFogTTM0LDE5Ljk5NDA5MDcgQzM0LDI0LjM1ODkzMjMgMzIuMDE4LDI4LjM5NjYzNTkgMjguNTYsMzEuMDcyNzY1IEMyNy4zNCwzMi4wMjExNjUxIDI1Ljk4LDMyLjc1MzQ3NDEgMjQuNTE4LDMzLjI0NTY4MTcgQzIzLjA3OCwzMy43NDU4OTI4IDIxLjU1NywzNCAyMCwzNCBDMTcuNywzNCAxNS40MTYsMzMuNDI2NzU4MSAxMy4zOTQsMzIuMzQxMzAwMiBDOC44MzMsMjkuOTAwMjcwMyA2LDI1LjE2OTI3NDIgNiwxOS45OTQwOTA3IEM2LDE5LjcwOTk3MDggNi4wMDcsMTkuNDI2ODUxNCA2LjAyOSwxOS4xNDg3MzQxIEM2LjM3LDEzLjMwMzI2NzggMTAuMzc3LDguMjQ1MTMzNjggMTYsNi41NzE0Mjc1MiBDMTkuNTI3LDUuNTA3OTc4ODMgMjMuNTg5LDUuOTM5MTYwNzUgMjYuODQyLDcuNzc4OTM2OTggQzMxLjI1NywxMC4yNTE5ODA0IDM0LDE0LjkzMjk1NTQgMzQsMTkuOTk0MDkwNyBMMzQsMTkuOTk0MDkwNyBaIE0xOC42NTcsMTIuNzIyMDIyNSBMMTcuOTk5LDExLjk2ODcwNDcgQzE2Ljg3OSwxMi45NDcxMTc1IDE2LjAwNywxMy45ODU1NTU2IDE0Ljk4OSwxNS41NTUyMTc5IEwxNS44MjcsMTYuMDk5NDQ3NSBDMTYuNzkyLDE0LjYxMzgyMDcgMTcuNjExLDEzLjYzNTQwNzkgMTguNjU3LDEyLjcyMjAyMjUgTDE4LjY1NywxMi43MjIwMjI1IFogTTE2LjgxMiwyMC4xNTMxNTc4IEMxOS4xMDgsMjAuOTQxNDkwNCAyMS4xMTEsMjIuMjAwMDIxNCAyMy4xMTcsMjQuMTEzODI4OSBMMjMuODA3LDIzLjM5MDUyMzcgQzIxLjY5NCwyMS4zNzI2NzI0IDE5LjU3NCwyMC4wNDQxMTE4IDE3LjEzNywxOS4yMDY3NTg1IEwxNi44MTIsMjAuMTUzMTU3OCBaIE0yMy44MjMsMTMuMzI1Mjc3MSBDMjUuNjk5LDE2LjE4NzQ4NDcgMjYuNzU2LDE5LjMyOTgxMDQgMjYuOTYzLDIyLjY2NDIxNzMgTDI1Ljk2NSwyMi43MjYyNDM1IEMyNS43NjksMTkuNTY3OTEwOSAyNC43NjcsMTYuNTg5NjU0MyAyMi45ODcsMTMuODczNTA4NCBMMjMuODIzLDEzLjMyNTI3NzEgWiIgaWQ9IkFtYXpvbi1DbG91ZEZyb250X0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1DbG91ZEZyb250XzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yOCwyNi40OTY4MzQzIEMyOCwyNS42Njk0ODUyIDI3LjMyNywyNC45OTYyMDEyIDI2LjUsMjQuOTk2MjAxMiBDMjUuNjczLDI0Ljk5NjIwMTIgMjUsMjUuNjY5NDg1MiAyNSwyNi40OTY4MzQzIEMyNSwyNy4zMjQxODM0IDI1LjY3MywyNy45OTc0Njc1IDI2LjUsMjcuOTk3NDY3NSBDMjcuMzI3LDI3Ljk5NzQ2NzUgMjgsMjcuMzI0MTgzNCAyOCwyNi40OTY4MzQzIEwyOCwyNi40OTY4MzQzIFogTTI5LDI2LjQ5NjgzNDMgQzI5LDI3Ljg3NTQxNiAyNy44NzksMjguOTk3ODg5NSAyNi41LDI4Ljk5Nzg4OTUgQzI1LjEyMSwyOC45OTc4ODk1IDI0LDI3Ljg3NTQxNiAyNCwyNi40OTY4MzQzIEMyNCwyNS4xMTgyNTI3IDI1LjEyMSwyMy45OTU3NzkxIDI2LjUsMjMuOTk1Nzc5MSBDMjcuODc5LDIzLjk5NTc3OTEgMjksMjUuMTE4MjUyNyAyOSwyNi40OTY4MzQzIEwyOSwyNi40OTY4MzQzIFogTTE1LDE4LjQ5MzQ1NzYgQzE1LDE3LjY2NjEwODUgMTQuMzI3LDE2Ljk5MjgyNDQgMTMuNSwxNi45OTI4MjQ0IEMxMi42NzMsMTYuOTkyODI0NCAxMiwxNy42NjYxMDg1IDEyLDE4LjQ5MzQ1NzYgQzEyLDE5LjMyMDgwNjcgMTIuNjczLDE5Ljk5NDA5MDcgMTMuNSwxOS45OTQwOTA3IEMxNC4zMjcsMTkuOTk0MDkwNyAxNSwxOS4zMjA4MDY3IDE1LDE4LjQ5MzQ1NzYgTDE1LDE4LjQ5MzQ1NzYgWiBNMTYsMTguNDkzNDU3NiBDMTYsMTkuODcyMDM5MiAxNC44NzksMjAuOTk0NTEyOCAxMy41LDIwLjk5NDUxMjggQzEyLjEyMSwyMC45OTQ1MTI4IDExLDE5Ljg3MjAzOTIgMTEsMTguNDkzNDU3NiBDMTEsMTcuMTE0ODc1OSAxMi4xMjEsMTUuOTkyNDAyNCAxMy41LDE1Ljk5MjQwMjQgQzE0Ljg3OSwxNS45OTI0MDI0IDE2LDE3LjExNDg3NTkgMTYsMTguNDkzNDU3NiBMMTYsMTguNDkzNDU3NiBaIE0yMCwxMC40OTAwODA4IEMyMCwxMS4zMTc0Mjk5IDIwLjY3MywxMS45OTA3MTQgMjEuNSwxMS45OTA3MTQgQzIyLjMyNywxMS45OTA3MTQgMjMsMTEuMzE3NDI5OSAyMywxMC40OTAwODA4IEMyMyw5LjY2MjczMTc4IDIyLjMyNyw4Ljk4OTQ0NzcxIDIxLjUsOC45ODk0NDc3MSBDMjAuNjczLDguOTg5NDQ3NzEgMjAsOS42NjI3MzE3OCAyMCwxMC40OTAwODA4IEwyMCwxMC40OTAwODA4IFogTTE5LDEwLjQ5MDA4MDggQzE5LDkuMTExNDk5MjEgMjAuMTIxLDcuOTg5MDI1NjIgMjEuNSw3Ljk4OTAyNTYyIEMyMi44NzksNy45ODkwMjU2MiAyNCw5LjExMTQ5OTIxIDI0LDEwLjQ5MDA4MDggQzI0LDExLjg2ODY2MjUgMjIuODc5LDEyLjk5MTEzNjEgMjEuNSwxMi45OTExMzYxIEMyMC4xMjEsMTIuOTkxMTM2MSAxOSwxMS44Njg2NjI1IDE5LDEwLjQ5MDA4MDggTDE5LDEwLjQ5MDA4MDggWiBNMzMsMTkuOTk0MDkwNyBDMzMsMTUuMzU2MTMzOSAzMC41MTUsMTEuMDY0MzIzMSAyNi41MDYsOC43NDMzNDM4OCBDMjUuNzg1LDguODg5NDA1NSAyNS4wOSw5LjA4ODQ4OTUgMjQuMjI2LDkuNDAwNjIxMTkgTDIzLjg4Niw4LjQ2MDIyNDQyIEMyNC4zMzIsOC4yOTkxNTY0NyAyNC43MzIsOC4xNjgxMDExNyAyNS4xMTksOC4wNTYwNTM5IEMyMy41MTIsNy4zNjM3NjE4MSAyMS43NzEsNi45ODg2MDM1MyAyMCw2Ljk4ODYwMzUzIEMxOS4xNTYsNi45ODg2MDM1MyAxOC4zMjUsNy4wNzU2NDAyNSAxNy41MTMsNy4yMzQ3MDczNiBDMTguMSw3LjU3Nzg1MjE0IDE4LjYyMSw3LjkyMDk5NjkyIDE5LjEyOCw4LjMwNjE1OTQyIEwxOC41MjQsOS4xMDM0OTU4MyBDMTcuODA5LDguNTYwMjY2NjMgMTcuMDY3LDguMTAyMDczMzIgMTYuMDk4LDcuNTkzODU4ODkgQzExLjE4OCw5LjEzODUxMDYgNy42NTIsMTMuNDcwMzM4MyA3LjA5MSwxOC41NTY0ODQyIEM4LjEyMSwxOC4zNDgzOTY0IDkuMTA5LDE4LjIzNTM0ODcgMTAuMjA3LDE4LjIwNzMzNjkgTDEwLjIzMiwxOS4yMDc3NTkgQzkuMDgxLDE5LjIzNjc3MTIgOC4wOTQsMTkuMzU4ODIyNyA3LjAxNCwxOS41OTU5MjI3IEM3LjAxLDE5LjcyNzk3ODQgNywxOS44NjMwMzU0IDcsMTkuOTk0MDkwNyBDNywyNC4zMjg5MTk2IDkuMTQ2LDI4LjMyNDYwNTUgMTIuNjc2LDMwLjcyOTYyMDIgQzEyLjA0OSwyOC44NjA4MzE3IDExLjcyNiwyNy4wOTIwODU1IDExLjcyNiwyNS4zNjkzNTg2IEMxMS43MjYsMjQuMzg0OTQzMyAxMS44OTUsMjMuNTc2NjAyMiAxMi4wNzMsMjIuNzIxMjQxMyBMMTIuMTk3LDIyLjExODk4NzIgTDEzLjE3OCwyMi4zMTIwNjg3IEwxMy4wNTMsMjIuOTI2MzI3OSBDMTIuODc3LDIzLjc2NDY4MTYgMTIuNzI2LDI0LjQ4Nzk4NjggMTIuNzI2LDI1LjM2OTM1ODYgQzEyLjcyNiwyNy4zMjExODIxIDEzLjE1OCwyOS4zNDIwMzQ3IDE0LjAyOCwzMS41MzQ5NiBDMTUuODg5LDMyLjUwMDM2NzMgMTcuODk1LDMyLjk5OTU3NzkgMjAsMzIuOTk5NTc3OSBDMjEuMzc5LDMyLjk5OTU3NzkgMjIuNzI0LDMyLjc3ODQ4NDYgMjQuMDA2LDMyLjM1NjMwNjUgQzI0LjUwOCwzMS4zNjY4ODkxIDI0Ljg4MSwzMC40Mjk0OTM2IDI1LjE5NSwyOS4zNDcwMzY5IEwyNi4xNTYsMjkuNjI2MTU0NiBDMjUuOTI4LDMwLjQxNDQ4NzIgMjUuNjY2LDMxLjEyNzc4ODIgMjUuMzU1LDMxLjgzNzA4NzQgQzI2LjE1OSwzMS40NzU5MzUxIDI2LjkxOSwzMS4wMjc3NDYgMjcuNjM0LDMwLjUwNjUyNjEgQzI3LjQ2MSwzMC4wODEzNDY3IDI3LjI4NCwyOS42NTcxNjc3IDI3LjA4LDI5LjI0Njk5NDYgTDI3Ljk3NSwyOC44MDA4MDY0IEMyOC4xNDYsMjkuMTQzOTUxMiAyOC4yODgsMjkuNTAyMTAyMyAyOC40MzgsMjkuODU1MjUxMyBDMzEuMzM1LDI3LjM3NzIwNTggMzMsMjMuODI4NzA4NiAzMywxOS45OTQwOTA3IEwzMywxOS45OTQwOTA3IFogTTM0LDE5Ljk5NDA5MDcgQzM0LDI0LjM1ODkzMjMgMzIuMDE4LDI4LjM5NjYzNTkgMjguNTYsMzEuMDcyNzY1IEMyNy4zNCwzMi4wMjExNjUxIDI1Ljk4LDMyLjc1MzQ3NDEgMjQuNTE4LDMzLjI0NTY4MTcgQzIzLjA3OCwzMy43NDU4OTI4IDIxLjU1NywzNCAyMCwzNCBDMTcuNywzNCAxNS40MTYsMzMuNDI2NzU4MSAxMy4zOTQsMzIuMzQxMzAwMiBDOC44MzMsMjkuOTAwMjcwMyA2LDI1LjE2OTI3NDIgNiwxOS45OTQwOTA3IEM2LDE5LjcwOTk3MDggNi4wMDcsMTkuNDI2ODUxNCA2LjAyOSwxOS4xNDg3MzQxIEM2LjM3LDEzLjMwMzI2NzggMTAuMzc3LDguMjQ1MTMzNjggMTYsNi41NzE0Mjc1MiBDMTkuNTI3LDUuNTA3OTc4ODMgMjMuNTg5LDUuOTM5MTYwNzUgMjYuODQyLDcuNzc4OTM2OTggQzMxLjI1NywxMC4yNTE5ODA0IDM0LDE0LjkzMjk1NTQgMzQsMTkuOTk0MDkwNyBMMzQsMTkuOTk0MDkwNyBaIE0xOC42NTcsMTIuNzIyMDIyNSBMMTcuOTk5LDExLjk2ODcwNDcgQzE2Ljg3OSwxMi45NDcxMTc1IDE2LjAwNywxMy45ODU1NTU2IDE0Ljk4OSwxNS41NTUyMTc5IEwxNS44MjcsMTYuMDk5NDQ3NSBDMTYuNzkyLDE0LjYxMzgyMDcgMTcuNjExLDEzLjYzNTQwNzkgMTguNjU3LDEyLjcyMjAyMjUgTDE4LjY1NywxMi43MjIwMjI1IFogTTE2LjgxMiwyMC4xNTMxNTc4IEMxOS4xMDgsMjAuOTQxNDkwNCAyMS4xMTEsMjIuMjAwMDIxNCAyMy4xMTcsMjQuMTEzODI4OSBMMjMuODA3LDIzLjM5MDUyMzcgQzIxLjY5NCwyMS4zNzI2NzI0IDE5LjU3NCwyMC4wNDQxMTE4IDE3LjEzNywxOS4yMDY3NTg1IEwxNi44MTIsMjAuMTUzMTU3OCBaIE0yMy44MjMsMTMuMzI1Mjc3MSBDMjUuNjk5LDE2LjE4NzQ4NDcgMjYuNzU2LDE5LjMyOTgxMDQgMjYuOTYzLDIyLjY2NDIxNzMgTDI1Ljk2NSwyMi43MjYyNDM1IEMyNS43NjksMTkuNTY3OTEwOSAyNC43NjcsMTYuNTg5NjU0MyAyMi45ODcsMTMuODczNTA4NCBMMjMuODIzLDEzLjMyNTI3NzEgWiIgaWQ9IkFtYXpvbi1DbG91ZEZyb250X0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Cloudfront", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4d5691d0-7395-4177-8fdd-7f6c7be59312": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "24", + zIndex: "24", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Client API", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(208,2,27)", + backgroundColor: "rgb(208,2,27)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(208,2,27)", + borderColor: "rgb(208,2,27)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Client API", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4a568f39-05c8-4bb2-bf5b-adcccc09ffbd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "19", + zIndex: "19", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Lambda Setting Function", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(237,113,0)", + backgroundColor: "rgb(237,113,0)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,135,0)", + borderColor: "rgb(255,135,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Lambda Setting Function", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e81196ef-bb66-46fd-9b31-5c648552bd9e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "30", + zIndex: "30", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Image Deployment", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "30px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(174,62,201)", + backgroundColor: "rgb(174,62,201)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.1", + backgroundOpacity: "0.1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(174,62,201)", + borderColor: "rgb(174,62,201)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "1px", + borderWidth: "1px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Image Deployment", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "97c14fa4-3d59-44a5-a0d5-8e7e2234ef79": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "20", + zIndex: "20", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "AWS CodePipeline", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(201,37,209)", + backgroundColor: "rgb(201,37,209)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(241,44,250)", + borderColor: "rgb(241,44,250)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FXUy1Db2RlUGlwZWxpbmVfMzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgPHBhdGggZD0iTTE0LDE0IEwxNywxNCBMMTcsMTMgTDE0LDEzIEwxNCwxNCBaIE0xOC45NTIsMjkuNzk5IEwxOC4wMjIsMjkuNDMzIEwyMS42MTEsMjAuMzA3IEwyMi41NDEsMjAuNjczIEwxOC45NTIsMjkuNzk5IFogTTIzLjE5NSwyNy4zNjYgTDI1Ljg0OCwyNS4wNCBMMjMuMTk4LDIyLjc0MyBMMjMuODUzLDIxLjk4NyBMMjYuOTM2LDI0LjY2IEMyNy4wNDUsMjQuNzU0IDI3LjEwOCwyNC44OTIgMjcuMTA4LDI1LjAzNiBDMjcuMTA4LDI1LjE4MSAyNy4wNDcsMjUuMzE4IDI2LjkzOCwyNS40MTQgTDIzLjg1NSwyOC4xMTggTDIzLjE5NSwyNy4zNjYgWiBNMTMuNjE3LDI1LjI4NSBDMTMuNTE3LDI1LjE4OCAxMy40NjIsMjUuMDU0IDEzLjQ2NSwyNC45MTUgQzEzLjQ2OCwyNC43NzUgMTMuNTI5LDI0LjY0NCAxMy42MzQsMjQuNTUyIEwxNi43MDYsMjEuODM2IEwxNy4zNjgsMjIuNTg1IEwxNC43LDI0Ljk0MyBMMTcuMzc0LDI3LjUzNyBMMTYuNjc5LDI4LjI1NSBMMTMuNjE3LDI1LjI4NSBaIE0zMywxMyBMMTksMTMgTDE5LDE0IEwzMywxNCBMMzMsMTUuMjUxIEMzMywxNi4yMTYgMzIuMjE2LDE3IDMxLjI1MSwxNyBMOS4xMDgsMTcgQzcuOTQ2LDE3IDcsMTYuMDU0IDcsMTQuODkxIEw3LDE0IEwxMiwxNCBMMTIsMTMgTDcsMTMgTDcsOS4xMDkgQzcsNy45NDYgNy45NDYsNyA5LjEwOCw3IEwzMS4wMTIsNyBDMzIuMTA4LDcgMzMsNy44OTIgMzMsOC45ODkgTDMzLDEzIFogTTExLDMzIEwyOSwzMyBMMjksMTggTDExLDE4IEwxMSwzMyBaIE0zMS4wMTIsNiBMOS4xMDgsNiBDNy4zOTUsNiA2LDcuMzk1IDYsOS4xMDkgTDYsMTQuODkxIEM2LDE2LjYwNSA3LjM5NSwxOCA5LjEwOCwxOCBMMTAsMTggTDEwLDMzLjUgQzEwLDMzLjc3NiAxMC4yMjQsMzQgMTAuNSwzNCBMMjkuNSwzNCBDMjkuNzc2LDM0IDMwLDMzLjc3NiAzMCwzMy41IEwzMCwxOCBMMzEuMjUxLDE4IEMzMi43NjcsMTggMzQsMTYuNzY3IDM0LDE1LjI1MSBMMzQsOC45ODkgQzM0LDcuMzQxIDMyLjY1OSw2IDMxLjAxMiw2IEwzMS4wMTIsNiBaIiBpZD0iQVdTLUNvZGVQaXBlbGluZV9JY29uXzMyX1NxdWlkIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FXUy1Db2RlUGlwZWxpbmVfMzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgPHBhdGggZD0iTTE0LDE0IEwxNywxNCBMMTcsMTMgTDE0LDEzIEwxNCwxNCBaIE0xOC45NTIsMjkuNzk5IEwxOC4wMjIsMjkuNDMzIEwyMS42MTEsMjAuMzA3IEwyMi41NDEsMjAuNjczIEwxOC45NTIsMjkuNzk5IFogTTIzLjE5NSwyNy4zNjYgTDI1Ljg0OCwyNS4wNCBMMjMuMTk4LDIyLjc0MyBMMjMuODUzLDIxLjk4NyBMMjYuOTM2LDI0LjY2IEMyNy4wNDUsMjQuNzU0IDI3LjEwOCwyNC44OTIgMjcuMTA4LDI1LjAzNiBDMjcuMTA4LDI1LjE4MSAyNy4wNDcsMjUuMzE4IDI2LjkzOCwyNS40MTQgTDIzLjg1NSwyOC4xMTggTDIzLjE5NSwyNy4zNjYgWiBNMTMuNjE3LDI1LjI4NSBDMTMuNTE3LDI1LjE4OCAxMy40NjIsMjUuMDU0IDEzLjQ2NSwyNC45MTUgQzEzLjQ2OCwyNC43NzUgMTMuNTI5LDI0LjY0NCAxMy42MzQsMjQuNTUyIEwxNi43MDYsMjEuODM2IEwxNy4zNjgsMjIuNTg1IEwxNC43LDI0Ljk0MyBMMTcuMzc0LDI3LjUzNyBMMTYuNjc5LDI4LjI1NSBMMTMuNjE3LDI1LjI4NSBaIE0zMywxMyBMMTksMTMgTDE5LDE0IEwzMywxNCBMMzMsMTUuMjUxIEMzMywxNi4yMTYgMzIuMjE2LDE3IDMxLjI1MSwxNyBMOS4xMDgsMTcgQzcuOTQ2LDE3IDcsMTYuMDU0IDcsMTQuODkxIEw3LDE0IEwxMiwxNCBMMTIsMTMgTDcsMTMgTDcsOS4xMDkgQzcsNy45NDYgNy45NDYsNyA5LjEwOCw3IEwzMS4wMTIsNyBDMzIuMTA4LDcgMzMsNy44OTIgMzMsOC45ODkgTDMzLDEzIFogTTExLDMzIEwyOSwzMyBMMjksMTggTDExLDE4IEwxMSwzMyBaIE0zMS4wMTIsNiBMOS4xMDgsNiBDNy4zOTUsNiA2LDcuMzk1IDYsOS4xMDkgTDYsMTQuODkxIEM2LDE2LjYwNSA3LjM5NSwxOCA5LjEwOCwxOCBMMTAsMTggTDEwLDMzLjUgQzEwLDMzLjc3NiAxMC4yMjQsMzQgMTAuNSwzNCBMMjkuNSwzNCBDMjkuNzc2LDM0IDMwLDMzLjc3NiAzMCwzMy41IEwzMCwxOCBMMzEuMjUxLDE4IEMzMi43NjcsMTggMzQsMTYuNzY3IDM0LDE1LjI1MSBMMzQsOC45ODkgQzM0LDcuMzQxIDMyLjY1OSw2IDMxLjAxMiw2IEwzMS4wMTIsNiBaIiBpZD0iQVdTLUNvZGVQaXBlbGluZV9JY29uXzMyX1NxdWlkIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "AWS CodePipeline", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ecec6776-80af-4617-9319-42817ba98234": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "8", + zIndex: "8", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "S3 CURBucket", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(122,161,22)", + backgroundColor: "rgb(122,161,22)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(146,193,26)", + borderColor: "rgb(146,193,26)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "S3 CURBucket", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "981d0823-2071-4308-90f9-b43a01777a3e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amazon API Gateway", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(231,21,123)", + backgroundColor: "rgb(231,21,123)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,25,147)", + borderColor: "rgb(255,25,147)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tQVBJLUdhdGV3YXlfMzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgPGcgaWQ9Ikljb24tU2VydmljZS8zMi9BbWF6b24tQVBJLUdhdGV3YXlfMzIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYuMDAwMDAwLCA2LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPiA8cGF0aCBkPSJNMTMsMjIuMDAwMDMzMyBMMTUsMjIuMDAwMDMzMyBMMTUsMjEuMDAwMDMzMyBMMTMsMjEuMDAwMDMzMyBMMTMsMjIuMDAwMDMzMyBaIE04LDEuMjYyMTI3MzQgTDEsNC4zMDIxMTI4NiBMMSwyNC4zNTcwMTczIEw4LDI2Ljc5NjAwNTcgTDgsMS4yNjIxMjczNCBaIE05LDcuMDAwMTAwMDEgTDksMjEuMDAwMDMzMyBMMTEsMjEuMDAwMDMzMyBMMTEsMjIuMDAwMDI4NiBMOSwyMi4wMDAwMjg2IEw5LDI3LjUwMDAwMjQgQzksMjcuNjYyMDAxNiA4LjkyMiwyNy44MTQwMDA5IDguNzksMjcuOTA4MDAwNCBDOC43MDQsMjcuOTY4MDAwMiA4LjYwMywyOCA4LjUsMjggQzguNDQ0LDI4IDguMzg5LDI3Ljk5MSA4LjMzNiwyNy45NzIwMDAxIEwwLjMzNiwyNS4xODUwMTM0IEMwLjEzNSwyNS4xMTUwMTM3IDAsMjQuOTI2MDE0NiAwLDI0LjcxMzAxNTcgTDAsMy45NzQxMTQ0MiBDMCwzLjc3NTExNTM3IDAuMTE4LDMuNTk1MTE2MjMgMC4zMDEsMy41MTYxMTY2IEw4LjMwMSwwLjA0MjEzMzE0ODkgQzguNDU1LC0wLjAyNDg2NjUzMiA4LjYzNCwtMC4wMDk4NjY2MDM0MSA4Ljc3NCwwLjA4MjEzMjk1ODQgQzguOTE1LDAuMTc0MTMyNTIgOSwwLjMzMjEzMTc2OCA5LDAuNTAwMTMwOTY4IEw5LDYuMDAwMTA0NzcgTDExLDYuMDAwMTA0NzcgTDExLDcuMDAwMTAwMDEgTDksNy4wMDAxMDAwMSBaIE0yNyw0LjMwMjExMjg2IEwyMCwxLjI2MjEyNzM0IEwyMCw2LjAwMDEwNDc3IEwyMCw3LjAwMDEwMDAxIEwyMCwyMS4wMDAwMzMzIEwyMCwyMi4wMDAwMjg2IEwyMCwyNi43OTYwMDU3IEwyNywyNC4zNTcwMTczIEwyNyw0LjMwMjExMjg2IFogTTI4LDMuOTc0MTE0NDIgTDI4LDI0LjcxMzAxNTcgQzI4LDI0LjkyNjAxNDYgMjcuODY1LDI1LjExNTAxMzcgMjcuNjY0LDI1LjE4NTAxMzQgTDE5LjY2NCwyNy45NzIwMDAxIEMxOS42MTEsMjcuOTkxIDE5LjU1NiwyOCAxOS41LDI4IEMxOS4zOTcsMjggMTkuMjk2LDI3Ljk2ODAwMDIgMTkuMjEsMjcuOTA4MDAwNCBDMTkuMDc4LDI3LjgxNDAwMDkgMTksMjcuNjYyMDAxNiAxOSwyNy41IEwxOSwyMi4wMDAwMjg2IEwxNywyMi4wMDAwMjg2IEwxNywyMS4wMDAwMzMzIEwxOSwyMS4wMDAwMzMzIEwxOSw3LjAwMDEwMDAxIEwxNyw3LjAwMDEwMDAxIEwxNyw2LjAwMDEwNDc3IEwxOSw2LjAwMDEwNDc3IEwxOSwwLjUwMDEzMDk2OCBDMTksMC4zMzIxMzE3NjggMTkuMDg1LDAuMTc0MTMyNTIgMTkuMjI2LDAuMDgyMTMyOTU4NCBDMTkuMzY3LC0wLjAxMDg2NjU5ODYgMTkuNTQ2LC0wLjAyNTg2NjUyNzIgMTkuNjk5LDAuMDQyMTMzMTQ4OSBMMjcuNjk5LDMuNTE2MTE2NiBDMjcuODgyLDMuNTk1MTE2MjMgMjgsMy43NzUxMTUzNyAyOCwzLjk3NDExNDQyIEwyOCwzLjk3NDExNDQyIFogTTEzLDcuMDAwMTA0NzcgTDE1LDcuMDAwMTA0NzcgTDE1LDYuMDAwMTA0NzcgTDEzLDYuMDAwMTA0NzcgTDEzLDcuMDAwMTA0NzcgWiBNMTcuOTc1LDkuNjU4MDg3MzUgTDE3LjAyNSw5LjM0MjA4ODg2IEwxNC4wMjUsMTguMzQyMDQ2IEwxNC45NzUsMTguNjU4MDQ0NSBMMTcuOTc1LDkuNjU4MDg3MzUgWiBNMTMuMTQ2LDE2Ljg1NDA1MzEgTDEwLjE0NiwxMy44NTQwNjc0IEM5Ljk1MSwxMy42NTgwNjgzIDkuOTUxLDEzLjM0MjA2OTggMTAuMTQ2LDEzLjE0NjA3MDcgTDEzLjE0NiwxMC4xNDYwODUgTDEzLjg1NCwxMC44NTQwODE3IEwxMS4yMDcsMTMuNTAwMDY5MSBMMTMuODU0LDE2LjE0NjA1NjUgTDEzLjE0NiwxNi44NTQwNTMxIFoiIGlkPSJBbWF6b24tQVBJLUdhdGV3YXlfSWNvbl8zMl9TcXVpZCI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tQVBJLUdhdGV3YXlfMzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgPGcgaWQ9Ikljb24tU2VydmljZS8zMi9BbWF6b24tQVBJLUdhdGV3YXlfMzIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYuMDAwMDAwLCA2LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPiA8cGF0aCBkPSJNMTMsMjIuMDAwMDMzMyBMMTUsMjIuMDAwMDMzMyBMMTUsMjEuMDAwMDMzMyBMMTMsMjEuMDAwMDMzMyBMMTMsMjIuMDAwMDMzMyBaIE04LDEuMjYyMTI3MzQgTDEsNC4zMDIxMTI4NiBMMSwyNC4zNTcwMTczIEw4LDI2Ljc5NjAwNTcgTDgsMS4yNjIxMjczNCBaIE05LDcuMDAwMTAwMDEgTDksMjEuMDAwMDMzMyBMMTEsMjEuMDAwMDMzMyBMMTEsMjIuMDAwMDI4NiBMOSwyMi4wMDAwMjg2IEw5LDI3LjUwMDAwMjQgQzksMjcuNjYyMDAxNiA4LjkyMiwyNy44MTQwMDA5IDguNzksMjcuOTA4MDAwNCBDOC43MDQsMjcuOTY4MDAwMiA4LjYwMywyOCA4LjUsMjggQzguNDQ0LDI4IDguMzg5LDI3Ljk5MSA4LjMzNiwyNy45NzIwMDAxIEwwLjMzNiwyNS4xODUwMTM0IEMwLjEzNSwyNS4xMTUwMTM3IDAsMjQuOTI2MDE0NiAwLDI0LjcxMzAxNTcgTDAsMy45NzQxMTQ0MiBDMCwzLjc3NTExNTM3IDAuMTE4LDMuNTk1MTE2MjMgMC4zMDEsMy41MTYxMTY2IEw4LjMwMSwwLjA0MjEzMzE0ODkgQzguNDU1LC0wLjAyNDg2NjUzMiA4LjYzNCwtMC4wMDk4NjY2MDM0MSA4Ljc3NCwwLjA4MjEzMjk1ODQgQzguOTE1LDAuMTc0MTMyNTIgOSwwLjMzMjEzMTc2OCA5LDAuNTAwMTMwOTY4IEw5LDYuMDAwMTA0NzcgTDExLDYuMDAwMTA0NzcgTDExLDcuMDAwMTAwMDEgTDksNy4wMDAxMDAwMSBaIE0yNyw0LjMwMjExMjg2IEwyMCwxLjI2MjEyNzM0IEwyMCw2LjAwMDEwNDc3IEwyMCw3LjAwMDEwMDAxIEwyMCwyMS4wMDAwMzMzIEwyMCwyMi4wMDAwMjg2IEwyMCwyNi43OTYwMDU3IEwyNywyNC4zNTcwMTczIEwyNyw0LjMwMjExMjg2IFogTTI4LDMuOTc0MTE0NDIgTDI4LDI0LjcxMzAxNTcgQzI4LDI0LjkyNjAxNDYgMjcuODY1LDI1LjExNTAxMzcgMjcuNjY0LDI1LjE4NTAxMzQgTDE5LjY2NCwyNy45NzIwMDAxIEMxOS42MTEsMjcuOTkxIDE5LjU1NiwyOCAxOS41LDI4IEMxOS4zOTcsMjggMTkuMjk2LDI3Ljk2ODAwMDIgMTkuMjEsMjcuOTA4MDAwNCBDMTkuMDc4LDI3LjgxNDAwMDkgMTksMjcuNjYyMDAxNiAxOSwyNy41IEwxOSwyMi4wMDAwMjg2IEwxNywyMi4wMDAwMjg2IEwxNywyMS4wMDAwMzMzIEwxOSwyMS4wMDAwMzMzIEwxOSw3LjAwMDEwMDAxIEwxNyw3LjAwMDEwMDAxIEwxNyw2LjAwMDEwNDc3IEwxOSw2LjAwMDEwNDc3IEwxOSwwLjUwMDEzMDk2OCBDMTksMC4zMzIxMzE3NjggMTkuMDg1LDAuMTc0MTMyNTIgMTkuMjI2LDAuMDgyMTMyOTU4NCBDMTkuMzY3LC0wLjAxMDg2NjU5ODYgMTkuNTQ2LC0wLjAyNTg2NjUyNzIgMTkuNjk5LDAuMDQyMTMzMTQ4OSBMMjcuNjk5LDMuNTE2MTE2NiBDMjcuODgyLDMuNTk1MTE2MjMgMjgsMy43NzUxMTUzNyAyOCwzLjk3NDExNDQyIEwyOCwzLjk3NDExNDQyIFogTTEzLDcuMDAwMTA0NzcgTDE1LDcuMDAwMTA0NzcgTDE1LDYuMDAwMTA0NzcgTDEzLDYuMDAwMTA0NzcgTDEzLDcuMDAwMTA0NzcgWiBNMTcuOTc1LDkuNjU4MDg3MzUgTDE3LjAyNSw5LjM0MjA4ODg2IEwxNC4wMjUsMTguMzQyMDQ2IEwxNC45NzUsMTguNjU4MDQ0NSBMMTcuOTc1LDkuNjU4MDg3MzUgWiBNMTMuMTQ2LDE2Ljg1NDA1MzEgTDEwLjE0NiwxMy44NTQwNjc0IEM5Ljk1MSwxMy42NTgwNjgzIDkuOTUxLDEzLjM0MjA2OTggMTAuMTQ2LDEzLjE0NjA3MDcgTDEzLjE0NiwxMC4xNDYwODUgTDEzLjg1NCwxMC44NTQwODE3IEwxMS4yMDcsMTMuNTAwMDY5MSBMMTMuODU0LDE2LjE0NjA1NjUgTDEzLjE0NiwxNi44NTQwNTMxIFoiIGlkPSJBbWF6b24tQVBJLUdhdGV3YXlfSWNvbl8zMl9TcXVpZCI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amazon API Gateway", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8b7ec622-f5f9-4485-ab52-33c6ce6038ef": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "13", + zIndex: "13", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "AWS Amplify", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(221,52,76)", + backgroundColor: "rgb(221,52,76)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,62,91)", + borderColor: "rgb(255,62,91)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FXUy1BbXBsaWZ5XzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yOS4wMjMzODgyLDMwIEwxOS4wMTgzODgyLDExIEwyMS44OTAzODgyLDExIEwzMS44OTMzODgyLDMwIEwyOS4wMjMzODgyLDMwIFogTTIyLjYzNDM4ODIsMTAuMjY3IEMyMi41NDgzODgyLDEwLjEwMyAyMi4zNzczODgyLDEwIDIyLjE5MjM4ODIsMTAgTDE4LjE5MDM4ODIsMTAgQzE4LjAxNTM4ODIsMTAgMTcuODUyMzg4MiwxMC4wOTIgMTcuNzYyMzg4MiwxMC4yNDIgQzE3LjY3MTM4ODIsMTAuMzkyIDE3LjY2NjM4ODIsMTAuNTc4IDE3Ljc0ODM4ODIsMTAuNzMzIEwyOC4yNzkzODgyLDMwLjczMyBDMjguMzY2Mzg4MiwzMC44OTcgMjguNTM2Mzg4MiwzMSAyOC43MjEzODgyLDMxIEwzMi43MjEzODgyLDMxIEMzMi44OTYzODgyLDMxIDMzLjA1OTM4ODIsMzAuOTA4IDMzLjE0OTM4ODIsMzAuNzU4IEMzMy4yNDAzODgyLDMwLjYwOCAzMy4yNDYzODgyLDMwLjQyMiAzMy4xNjQzODgyLDMwLjI2NyBMMjIuNjM0Mzg4MiwxMC4yNjcgWiBNMjIuODA4Mzg4MiwzMCBMMTUuNTcxMzg4MiwxNS41MjggTDE2Ljk0MTM4ODIsMTMuMDc3IEwyNS42NzgzODgyLDMwIEwyMi44MDgzODgyLDMwIFogTTE3LjQwMzM4ODIsMTEuNzkyIEMxNy4zMTgzODgyLDExLjYyOCAxNy4xNTEzODgyLDExLjUyNCAxNi45NjYzODgyLDExLjUyMSBMMTYuOTU5Mzg4MiwxMS41MjEgQzE2Ljc3ODM4ODIsMTEuNTIxIDE2LjYxMTM4ODIsMTEuNjE5IDE2LjUyMjM4ODIsMTEuNzc3IEwxNC41NjkzODgyLDE1LjI3MSBDMTQuNDg4Mzg4MiwxNS40MTYgMTQuNDg0Mzg4MiwxNS41OTEgMTQuNTU4Mzg4MiwxNS43MzkgTDIyLjA1MjM4ODIsMzAuNzI0IEMyMi4xMzczODgyLDMwLjg5MyAyMi4zMTAzODgyLDMxIDIyLjUwMDM4ODIsMzEgTDI2LjUwMDM4ODIsMzEgQzI2LjY3NDM4ODIsMzEgMjYuODM1Mzg4MiwzMC45MDkgMjYuOTI2Mzg4MiwzMC43NiBDMjcuMDE3Mzg4MiwzMC42MTEgMjcuMDI0Mzg4MiwzMC40MjYgMjYuOTQ0Mzg4MiwzMC4yNzEgTDE3LjQwMzM4ODIsMTEuNzkyIFogTTcuMzU0Mzg4MjQsMzAgTDEzLjg1ODM4ODIsMTguNDI2IEwxNC45MzMzODgyLDIwLjQ5NSBMMTEuMjQ5Mzg4MiwyNy4zIEMxMS4xNjUzODgyLDI3LjQ1NiAxMS4xNjkzODgyLDI3LjY0MyAxMS4yNTgzODgyLDI3Ljc5NCBDMTEuMzQ4Mzg4MiwyNy45NDYgMTEuNTEyMzg4MiwyOC4wMzkgMTEuNjg4Mzg4MiwyOC4wMzkgTDE4LjY4NzM4ODIsMjguMDM5IEwxOS42ODQzODgyLDMwIEw3LjM1NDM4ODI0LDMwIFogTTE5LjQzOTM4ODIsMjcuMzEyIEMxOS4zNTQzODgyLDI3LjE0NCAxOS4xODIzODgyLDI3LjAzOSAxOC45OTQzODgyLDI3LjAzOSBMMTIuNTI4Mzg4MiwyNy4wMzkgTDE1LjkzOTM4ODIsMjAuNzM4IEMxNi4wMTgzODgyLDIwLjU5MiAxNi4wMjAzODgyLDIwLjQxNyAxNS45NDMzODgyLDIwLjI3IEwxNC4zMTgzODgyLDE3LjE0NSBDMTQuMjM0Mzg4MiwxNi45ODEgMTQuMDY2Mzg4MiwxNi44NzggMTMuODgyMzg4MiwxNi44NzUgTDEzLjg3NTM4ODIsMTYuODc1IEMxMy42OTQzODgyLDE2Ljg3NSAxMy41MjczODgyLDE2Ljk3MiAxMy40MzkzODgyLDE3LjEzIEw2LjA2NDM4ODI0LDMwLjI1NSBDNS45NzczODgyNCwzMC40MSA1Ljk3ODM4ODI0LDMwLjU5OSA2LjA2ODM4ODI0LDMwLjc1MiBDNi4xNTgzODgyNCwzMC45MDYgNi4zMjIzODgyNCwzMSA2LjUwMDM4ODI0LDMxIEwyMC41MDAzODgyLDMxIEMyMC42NzMzODgyLDMxIDIwLjgzNTM4ODIsMzAuOTEgMjAuOTI1Mzg4MiwzMC43NjEgQzIxLjAxNzM4ODIsMzAuNjEzIDIxLjAyNDM4ODIsMzAuNDI4IDIwLjk0NTM4ODIsMzAuMjczIEwxOS40MzkzODgyLDI3LjMxMiBaIiBpZD0iQVdTLUFtcGxpZnlfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FXUy1BbXBsaWZ5XzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yOS4wMjMzODgyLDMwIEwxOS4wMTgzODgyLDExIEwyMS44OTAzODgyLDExIEwzMS44OTMzODgyLDMwIEwyOS4wMjMzODgyLDMwIFogTTIyLjYzNDM4ODIsMTAuMjY3IEMyMi41NDgzODgyLDEwLjEwMyAyMi4zNzczODgyLDEwIDIyLjE5MjM4ODIsMTAgTDE4LjE5MDM4ODIsMTAgQzE4LjAxNTM4ODIsMTAgMTcuODUyMzg4MiwxMC4wOTIgMTcuNzYyMzg4MiwxMC4yNDIgQzE3LjY3MTM4ODIsMTAuMzkyIDE3LjY2NjM4ODIsMTAuNTc4IDE3Ljc0ODM4ODIsMTAuNzMzIEwyOC4yNzkzODgyLDMwLjczMyBDMjguMzY2Mzg4MiwzMC44OTcgMjguNTM2Mzg4MiwzMSAyOC43MjEzODgyLDMxIEwzMi43MjEzODgyLDMxIEMzMi44OTYzODgyLDMxIDMzLjA1OTM4ODIsMzAuOTA4IDMzLjE0OTM4ODIsMzAuNzU4IEMzMy4yNDAzODgyLDMwLjYwOCAzMy4yNDYzODgyLDMwLjQyMiAzMy4xNjQzODgyLDMwLjI2NyBMMjIuNjM0Mzg4MiwxMC4yNjcgWiBNMjIuODA4Mzg4MiwzMCBMMTUuNTcxMzg4MiwxNS41MjggTDE2Ljk0MTM4ODIsMTMuMDc3IEwyNS42NzgzODgyLDMwIEwyMi44MDgzODgyLDMwIFogTTE3LjQwMzM4ODIsMTEuNzkyIEMxNy4zMTgzODgyLDExLjYyOCAxNy4xNTEzODgyLDExLjUyNCAxNi45NjYzODgyLDExLjUyMSBMMTYuOTU5Mzg4MiwxMS41MjEgQzE2Ljc3ODM4ODIsMTEuNTIxIDE2LjYxMTM4ODIsMTEuNjE5IDE2LjUyMjM4ODIsMTEuNzc3IEwxNC41NjkzODgyLDE1LjI3MSBDMTQuNDg4Mzg4MiwxNS40MTYgMTQuNDg0Mzg4MiwxNS41OTEgMTQuNTU4Mzg4MiwxNS43MzkgTDIyLjA1MjM4ODIsMzAuNzI0IEMyMi4xMzczODgyLDMwLjg5MyAyMi4zMTAzODgyLDMxIDIyLjUwMDM4ODIsMzEgTDI2LjUwMDM4ODIsMzEgQzI2LjY3NDM4ODIsMzEgMjYuODM1Mzg4MiwzMC45MDkgMjYuOTI2Mzg4MiwzMC43NiBDMjcuMDE3Mzg4MiwzMC42MTEgMjcuMDI0Mzg4MiwzMC40MjYgMjYuOTQ0Mzg4MiwzMC4yNzEgTDE3LjQwMzM4ODIsMTEuNzkyIFogTTcuMzU0Mzg4MjQsMzAgTDEzLjg1ODM4ODIsMTguNDI2IEwxNC45MzMzODgyLDIwLjQ5NSBMMTEuMjQ5Mzg4MiwyNy4zIEMxMS4xNjUzODgyLDI3LjQ1NiAxMS4xNjkzODgyLDI3LjY0MyAxMS4yNTgzODgyLDI3Ljc5NCBDMTEuMzQ4Mzg4MiwyNy45NDYgMTEuNTEyMzg4MiwyOC4wMzkgMTEuNjg4Mzg4MiwyOC4wMzkgTDE4LjY4NzM4ODIsMjguMDM5IEwxOS42ODQzODgyLDMwIEw3LjM1NDM4ODI0LDMwIFogTTE5LjQzOTM4ODIsMjcuMzEyIEMxOS4zNTQzODgyLDI3LjE0NCAxOS4xODIzODgyLDI3LjAzOSAxOC45OTQzODgyLDI3LjAzOSBMMTIuNTI4Mzg4MiwyNy4wMzkgTDE1LjkzOTM4ODIsMjAuNzM4IEMxNi4wMTgzODgyLDIwLjU5MiAxNi4wMjAzODgyLDIwLjQxNyAxNS45NDMzODgyLDIwLjI3IEwxNC4zMTgzODgyLDE3LjE0NSBDMTQuMjM0Mzg4MiwxNi45ODEgMTQuMDY2Mzg4MiwxNi44NzggMTMuODgyMzg4MiwxNi44NzUgTDEzLjg3NTM4ODIsMTYuODc1IEMxMy42OTQzODgyLDE2Ljg3NSAxMy41MjczODgyLDE2Ljk3MiAxMy40MzkzODgyLDE3LjEzIEw2LjA2NDM4ODI0LDMwLjI1NSBDNS45NzczODgyNCwzMC40MSA1Ljk3ODM4ODI0LDMwLjU5OSA2LjA2ODM4ODI0LDMwLjc1MiBDNi4xNTgzODgyNCwzMC45MDYgNi4zMjIzODgyNCwzMSA2LjUwMDM4ODI0LDMxIEwyMC41MDAzODgyLDMxIEMyMC42NzMzODgyLDMxIDIwLjgzNTM4ODIsMzAuOTEgMjAuOTI1Mzg4MiwzMC43NjEgQzIxLjAxNzM4ODIsMzAuNjEzIDIxLjAyNDM4ODIsMzAuNDI4IDIwLjk0NTM4ODIsMzAuMjczIEwxOS40MzkzODgyLDI3LjMxMiBaIiBpZD0iQVdTLUFtcGxpZnlfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "AWS Amplify", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6d3a6772-3c10-48c4-abb8-94cdc2cd465a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "21", + zIndex: "21", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "AWS CodeBuild", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(201,37,209)", + backgroundColor: "rgb(201,37,209)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(241,44,250)", + borderColor: "rgb(241,44,250)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FXUy1Db2RlQnVpbGRfMzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgPHBhdGggZD0iTTI4LjY4MzQ5ODIsMjYuODU0IEwzMC42Njg1NzcyLDI0Ljg1NCBDMzAuODYyMTIyNSwyNC42NTkgMzAuODYyMTIyNSwyNC4zNDIgMzAuNjY4NTc3MiwyNC4xNDcgTDI4LjY4MzQ5ODIsMjIuMTQ3IEwyNy45ODE3NzI4LDIyLjg1NCBMMjkuNjE1NDkyOCwyNC41IEwyNy45ODE3NzI4LDI2LjE0NyBMMjguNjgzNDk4MiwyNi44NTQgWiBNMjIuMDI2NTM1NiwyNi44NTQgTDIyLjcyODI2MTEsMjYuMTQ3IEwyMS4wOTQ1NDEsMjQuNSBMMjIuNzI4MjYxMSwyMi44NTQgTDIyLjAyNjUzNTYsMjIuMTQ3IEwyMC4wNDE0NTY2LDI0LjE0NyBDMTkuODQ3OTExNCwyNC4zNDIgMTkuODQ3OTExNCwyNC42NTkgMjAuMDQxNDU2NiwyNC44NTQgTDIyLjAyNjUzNTYsMjYuODU0IFogTTMzLjI1OTEwNTQsMTEgTDMwLjExOTcwMjksOCBMMjkuNTMxMTI3LDggTDI2LjU1MzUwODQsMTEgTDMzLjI1OTEwNTQsMTEgWiBNMjguMTI2NjgzNSw4IEwyMi41ODMzNTAzLDggTDI1LjM1NDUyMDcsMTAuNzkzIEwyOC4xMjY2ODM1LDggWiBNMjUuMzU0NTIwNywxNy4wMzUgTDIwLjE1MTYyODUsMTkgTDMwLjU1ODQwNTQsMTkgTDI1LjM1NDUyMDcsMTcuMDM1IFogTTE3LjkxMDQ3NDIsMjkgTDMyLjc5ODU2NzEsMjkgTDMyLjc5ODU2NzEsMjAgTDE3LjkxMDQ3NDIsMjAgTDE3LjkxMDQ3NDIsMjkgWiBNMjQuMTU2NTI1NCwxMSBMMjEuMzg0MzYyNiw4LjIwOCBMMTguNjEzMTkyMiwxMSBMMjQuMTU2NTI1NCwxMSBaIE0xNy4zNzc0ODA1LDEwLjgzMSBMMjAuMTg2MzY3NCw4IEwxMy44NjY4NjgyLDggTDE3LjM3NzQ4MDUsMTAuODMxIFogTTE1Ljk5OTgzNTcsMTEgTDEyLjQ2OTM3MjYsOC4xNTUgTDkuMzAyMTc4OTgsMTEgTDE0LjQzNjU4NTksMTEgTDE1Ljk5OTgzNTcsMTEgWiBNMTMuOTQwMzE2MiwxMiBMOS44NTMwMzg0MiwxMiBMMTMuOTQwMzE2MiwxNS40MzMgTDEzLjk0MDMxNjIsMTIgWiBNMTMuOTQwMzE2MiwxNy43MDggTDkuMjE2ODIwNTksMjIuNDY3IEwxMy45NDAzMTYyLDI2LjQzMyBMMTMuOTQwMzE2MiwxNy43MDggWiBNMTMuOTQwMzE2MiwyOC42MTEgTDkuMDIyMjgyODQsMzMgTDEzLjk0MDMxNjIsMzMgTDEzLjk0MDMxNjIsMjguNjExIFogTTguOTc3NjE4NTYsMzEuNzA0IEwxMy42NzUzMDgxLDI3LjUxMiBMOC45Nzc2MTg1NiwyMy41NjggTDguOTc3NjE4NTYsMzEuNzA0IFogTTguOTc3NjE4NTYsMjEuMjkzIEwxMy43MDIxMDY3LDE2LjUzNCBMOC45Nzc2MTg1NiwxMi41NjggTDguOTc3NjE4NTYsMjEuMjkzIFogTTguOTc3NjE4NTYsOS45NTIgTDExLjE0OTI5NSw4IEw4Ljk3NzYxODU2LDggTDguOTc3NjE4NTYsOS45NTIgWiBNNi45OTI1Mzk1MiwxMiBMNy45ODUwNzkwNCwxMiBMNy45ODUwNzkwNCw3IEw2Ljk5MjUzOTUyLDcgTDYuOTkyNTM5NTIsMTIgWiBNMzQuOTY1MjgwOCwxMS42ODYgQzM0Ljg4OTg0NzgsMTEuODc2IDM0LjcwNzIyMDYsMTIgMzQuNTAzNzUsMTIgTDI1Ljg1MDc5MDQsMTIgTDI1Ljg1MDc5MDQsMTYuMTU0IEwzMy40Njk1MjM4LDE5LjAzMiBMMzMuNDY4NTMxMiwxOS4wMzYgQzMzLjY1NzExMzcsMTkuMTA3IDMzLjc5MTEwNjYsMTkuMjg2IDMzLjc5MTEwNjYsMTkuNSBMMzMuNzkxMTA2NiwyOS41IEMzMy43OTExMDY2LDI5Ljc3NyAzMy41Njk3NzAzLDMwIDMzLjI5NDgzNjgsMzAgTDE3LjQxNDIwNDUsMzAgQzE3LjE0MDI2MzYsMzAgMTYuOTE3OTM0NywyOS43NzcgMTYuOTE3OTM0NywyOS41IEwxNi45MTc5MzQ3LDE5LjUgQzE2LjkxNzkzNDcsMTkuMjg2IDE3LjA1MjkyMDEsMTkuMTA3IDE3LjI0MTUwMjYsMTkuMDM2IEwxNy4yNDA1MTAxLDE5LjAzMiBMMjQuODU4MjUwOSwxNi4xNTQgTDI0Ljg1ODI1MDksMTIgTDE0LjkzMjg1NTcsMTIgTDE0LjkzMjg1NTcsMzMuNSBDMTQuOTMyODU1NywzMy43NzcgMTQuNzExNTE5NCwzNCAxNC40MzY1ODU5LDM0IEw4LjQ4MTM0ODgsMzQgQzguMjA3NDA3ODksMzQgNy45ODUwNzkwNCwzMy43NzcgNy45ODUwNzkwNCwzMy41IEw3Ljk4NTA3OTA0LDEzIEw2LjQ5NjI2OTc2LDEzIEM2LjIyMjMyODg1LDEzIDYsMTIuNzc3IDYsMTIuNSBMNiw2LjUgQzYsNi4yMjQgNi4yMjIzMjg4NSw2IDYuNDk2MjY5NzYsNiBMOC40ODEzNDg4LDYgQzguNzU2MjgyMjUsNiA4Ljk3NzYxODU2LDYuMjI0IDguOTc3NjE4NTYsNi41IEw4Ljk3NzYxODU2LDcgTDEyLjQzNjYxODgsNyBMMTIuNDQwNTg4OSw3IEwzMC4zMTcyMTgzLDcgQzMwLjQ0NDI2MzMsNyAzMC41NjYzNDU3LDcuMDUgMzAuNjU4NjUxOCw3LjEzOCBMMzQuODQ1MTgzNSwxMS4xMzggQzM0Ljk5MjA3OTQsMTEuMjc4IDM1LjAzOTcyMTMsMTEuNDk2IDM0Ljk2NTI4MDgsMTEuNjg2IEwzNC45NjUyODA4LDExLjY4NiBaIE0yNC4zMjYyNDk3LDI4LjUyIEwyMy40MDYxNjU2LDI4LjE0OCBMMjYuMDUzMjY4NSwyMS40ODEgTDI2Ljk3MzM1MjYsMjEuODUzIEwyNC4zMjYyNDk3LDI4LjUyIFoiIGlkPSJBV1MtQ29kZUJ1aWxkX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FXUy1Db2RlQnVpbGRfMzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgPHBhdGggZD0iTTI4LjY4MzQ5ODIsMjYuODU0IEwzMC42Njg1NzcyLDI0Ljg1NCBDMzAuODYyMTIyNSwyNC42NTkgMzAuODYyMTIyNSwyNC4zNDIgMzAuNjY4NTc3MiwyNC4xNDcgTDI4LjY4MzQ5ODIsMjIuMTQ3IEwyNy45ODE3NzI4LDIyLjg1NCBMMjkuNjE1NDkyOCwyNC41IEwyNy45ODE3NzI4LDI2LjE0NyBMMjguNjgzNDk4MiwyNi44NTQgWiBNMjIuMDI2NTM1NiwyNi44NTQgTDIyLjcyODI2MTEsMjYuMTQ3IEwyMS4wOTQ1NDEsMjQuNSBMMjIuNzI4MjYxMSwyMi44NTQgTDIyLjAyNjUzNTYsMjIuMTQ3IEwyMC4wNDE0NTY2LDI0LjE0NyBDMTkuODQ3OTExNCwyNC4zNDIgMTkuODQ3OTExNCwyNC42NTkgMjAuMDQxNDU2NiwyNC44NTQgTDIyLjAyNjUzNTYsMjYuODU0IFogTTMzLjI1OTEwNTQsMTEgTDMwLjExOTcwMjksOCBMMjkuNTMxMTI3LDggTDI2LjU1MzUwODQsMTEgTDMzLjI1OTEwNTQsMTEgWiBNMjguMTI2NjgzNSw4IEwyMi41ODMzNTAzLDggTDI1LjM1NDUyMDcsMTAuNzkzIEwyOC4xMjY2ODM1LDggWiBNMjUuMzU0NTIwNywxNy4wMzUgTDIwLjE1MTYyODUsMTkgTDMwLjU1ODQwNTQsMTkgTDI1LjM1NDUyMDcsMTcuMDM1IFogTTE3LjkxMDQ3NDIsMjkgTDMyLjc5ODU2NzEsMjkgTDMyLjc5ODU2NzEsMjAgTDE3LjkxMDQ3NDIsMjAgTDE3LjkxMDQ3NDIsMjkgWiBNMjQuMTU2NTI1NCwxMSBMMjEuMzg0MzYyNiw4LjIwOCBMMTguNjEzMTkyMiwxMSBMMjQuMTU2NTI1NCwxMSBaIE0xNy4zNzc0ODA1LDEwLjgzMSBMMjAuMTg2MzY3NCw4IEwxMy44NjY4NjgyLDggTDE3LjM3NzQ4MDUsMTAuODMxIFogTTE1Ljk5OTgzNTcsMTEgTDEyLjQ2OTM3MjYsOC4xNTUgTDkuMzAyMTc4OTgsMTEgTDE0LjQzNjU4NTksMTEgTDE1Ljk5OTgzNTcsMTEgWiBNMTMuOTQwMzE2MiwxMiBMOS44NTMwMzg0MiwxMiBMMTMuOTQwMzE2MiwxNS40MzMgTDEzLjk0MDMxNjIsMTIgWiBNMTMuOTQwMzE2MiwxNy43MDggTDkuMjE2ODIwNTksMjIuNDY3IEwxMy45NDAzMTYyLDI2LjQzMyBMMTMuOTQwMzE2MiwxNy43MDggWiBNMTMuOTQwMzE2MiwyOC42MTEgTDkuMDIyMjgyODQsMzMgTDEzLjk0MDMxNjIsMzMgTDEzLjk0MDMxNjIsMjguNjExIFogTTguOTc3NjE4NTYsMzEuNzA0IEwxMy42NzUzMDgxLDI3LjUxMiBMOC45Nzc2MTg1NiwyMy41NjggTDguOTc3NjE4NTYsMzEuNzA0IFogTTguOTc3NjE4NTYsMjEuMjkzIEwxMy43MDIxMDY3LDE2LjUzNCBMOC45Nzc2MTg1NiwxMi41NjggTDguOTc3NjE4NTYsMjEuMjkzIFogTTguOTc3NjE4NTYsOS45NTIgTDExLjE0OTI5NSw4IEw4Ljk3NzYxODU2LDggTDguOTc3NjE4NTYsOS45NTIgWiBNNi45OTI1Mzk1MiwxMiBMNy45ODUwNzkwNCwxMiBMNy45ODUwNzkwNCw3IEw2Ljk5MjUzOTUyLDcgTDYuOTkyNTM5NTIsMTIgWiBNMzQuOTY1MjgwOCwxMS42ODYgQzM0Ljg4OTg0NzgsMTEuODc2IDM0LjcwNzIyMDYsMTIgMzQuNTAzNzUsMTIgTDI1Ljg1MDc5MDQsMTIgTDI1Ljg1MDc5MDQsMTYuMTU0IEwzMy40Njk1MjM4LDE5LjAzMiBMMzMuNDY4NTMxMiwxOS4wMzYgQzMzLjY1NzExMzcsMTkuMTA3IDMzLjc5MTEwNjYsMTkuMjg2IDMzLjc5MTEwNjYsMTkuNSBMMzMuNzkxMTA2NiwyOS41IEMzMy43OTExMDY2LDI5Ljc3NyAzMy41Njk3NzAzLDMwIDMzLjI5NDgzNjgsMzAgTDE3LjQxNDIwNDUsMzAgQzE3LjE0MDI2MzYsMzAgMTYuOTE3OTM0NywyOS43NzcgMTYuOTE3OTM0NywyOS41IEwxNi45MTc5MzQ3LDE5LjUgQzE2LjkxNzkzNDcsMTkuMjg2IDE3LjA1MjkyMDEsMTkuMTA3IDE3LjI0MTUwMjYsMTkuMDM2IEwxNy4yNDA1MTAxLDE5LjAzMiBMMjQuODU4MjUwOSwxNi4xNTQgTDI0Ljg1ODI1MDksMTIgTDE0LjkzMjg1NTcsMTIgTDE0LjkzMjg1NTcsMzMuNSBDMTQuOTMyODU1NywzMy43NzcgMTQuNzExNTE5NCwzNCAxNC40MzY1ODU5LDM0IEw4LjQ4MTM0ODgsMzQgQzguMjA3NDA3ODksMzQgNy45ODUwNzkwNCwzMy43NzcgNy45ODUwNzkwNCwzMy41IEw3Ljk4NTA3OTA0LDEzIEw2LjQ5NjI2OTc2LDEzIEM2LjIyMjMyODg1LDEzIDYsMTIuNzc3IDYsMTIuNSBMNiw2LjUgQzYsNi4yMjQgNi4yMjIzMjg4NSw2IDYuNDk2MjY5NzYsNiBMOC40ODEzNDg4LDYgQzguNzU2MjgyMjUsNiA4Ljk3NzYxODU2LDYuMjI0IDguOTc3NjE4NTYsNi41IEw4Ljk3NzYxODU2LDcgTDEyLjQzNjYxODgsNyBMMTIuNDQwNTg4OSw3IEwzMC4zMTcyMTgzLDcgQzMwLjQ0NDI2MzMsNyAzMC41NjYzNDU3LDcuMDUgMzAuNjU4NjUxOCw3LjEzOCBMMzQuODQ1MTgzNSwxMS4xMzggQzM0Ljk5MjA3OTQsMTEuMjc4IDM1LjAzOTcyMTMsMTEuNDk2IDM0Ljk2NTI4MDgsMTEuNjg2IEwzNC45NjUyODA4LDExLjY4NiBaIE0yNC4zMjYyNDk3LDI4LjUyIEwyMy40MDYxNjU2LDI4LjE0OCBMMjYuMDUzMjY4NSwyMS40ODEgTDI2Ljk3MzM1MjYsMjEuODUzIEwyNC4zMjYyNDk3LDI4LjUyIFoiIGlkPSJBV1MtQ29kZUJ1aWxkX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "AWS CodeBuild", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "d93db70a-6b23-404e-b5f7-7de8c80466d5": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "12", + zIndex: "12", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amazon Neptun", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(201,37,209)", + backgroundColor: "rgb(201,37,209)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(241,44,250)", + borderColor: "rgb(241,44,250)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1OZXB0dW5lXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0zMi41LDMwIEMzMi4yMjUsMzAgMzIsMjkuNzc2IDMyLDI5LjUgQzMyLDI5LjIyNCAzMi4yMjUsMjkgMzIuNSwyOSBDMzIuNzc1LDI5IDMzLDI5LjIyNCAzMywyOS41IEMzMywyOS43NzYgMzIuNzc1LDMwIDMyLjUsMzAgTDMyLjUsMzAgWiBNMjgsMzMgQzI3LjQ0OCwzMyAyNywzMi41NTEgMjcsMzIgQzI3LDMxLjQ0OSAyNy40NDgsMzEgMjgsMzEgQzI4LjU1MiwzMSAyOSwzMS40NDkgMjksMzIgQzI5LDMyLjU1MSAyOC41NTIsMzMgMjgsMzMgTDI4LDMzIFogTTI1LDI0IEMyNSwyMi44OTcgMjUuODk3LDIyIDI3LDIyIEMyOC4xMDMsMjIgMjksMjIuODk3IDI5LDI0IEMyOSwyNS4xMDMgMjguMTAzLDI2IDI3LDI2IEMyNS44OTcsMjYgMjUsMjUuMTAzIDI1LDI0IEwyNSwyNCBaIE0yMi41LDIwIEMyMi4yMjUsMjAgMjIsMTkuNzc2IDIyLDE5LjUgQzIyLDE5LjIyNCAyMi4yMjUsMTkgMjIuNSwxOSBDMjIuNzc1LDE5IDIzLDE5LjIyNCAyMywxOS41IEMyMywxOS43NzYgMjIuNzc1LDIwIDIyLjUsMjAgTDIyLjUsMjAgWiBNMzIsMTYgQzMyLjU1MiwxNiAzMywxNi40NDkgMzMsMTcgQzMzLDE3LjU1MSAzMi41NTIsMTggMzIsMTggQzMxLjQ0OCwxOCAzMSwxNy41NTEgMzEsMTcgQzMxLDE2LjQ0OSAzMS40NDgsMTYgMzIsMTYgTDMyLDE2IFogTTIxLDI3IEMyMC40NDgsMjcgMjAsMjYuNTUxIDIwLDI2IEMyMCwyNS40NDkgMjAuNDQ4LDI1IDIxLDI1IEMyMS41NTIsMjUgMjIsMjUuNDQ5IDIyLDI2IEMyMiwyNi41NTEgMjEuNTUyLDI3IDIxLDI3IEwyMSwyNyBaIE0zMi41LDI4IEMzMS42NzMsMjggMzEsMjguNjczIDMxLDI5LjUgQzMxLDI5LjYyMSAzMS4wMTksMjkuNzM4IDMxLjA0NiwyOS44NTEgTDI5LjYwOCwzMC44MjMgQzI5LjI4NSwzMC4zODIgMjguNzg3LDMwLjA4NCAyOC4yMTYsMzAuMDIyIEwyOC4wMSwyNi44MTIgQzI5LjE2NiwyNi4zOTYgMzAsMjUuMjk4IDMwLDI0IEMzMCwyMy4yNDIgMjkuNzA4LDIyLjU1NyAyOS4yNDMsMjIuMDI4IEwzMS4zNjksMTguODg4IEMzMS41NjgsMTguOTU1IDMxLjc3OCwxOSAzMiwxOSBDMzMuMTAzLDE5IDM0LDE4LjEwMyAzNCwxNyBDMzQsMTUuODk3IDMzLjEwMywxNSAzMiwxNSBDMzAuODk3LDE1IDMwLDE1Ljg5NyAzMCwxNyBDMzAsMTcuNTIgMzAuMjA0LDE3Ljk4OSAzMC41MjksMTguMzQ1IEwyOC40NjMsMjEuMzk3IEMyOC4wMjgsMjEuMTUyIDI3LjUzNCwyMSAyNywyMSBDMjYuNDA3LDIxIDI1Ljg1NywyMS4xNzggMjUuMzkzLDIxLjQ3NiBMMjMuOTE4LDE5Ljk2OCBDMjMuOTY3LDE5LjgyIDI0LDE5LjY2NSAyNCwxOS41IEMyNCwxOC42NzMgMjMuMzI3LDE4IDIyLjUsMTggQzIxLjY3MywxOCAyMSwxOC42NzMgMjEsMTkuNSBDMjEsMjAuMzI3IDIxLjY3MywyMSAyMi41LDIxIEMyMi43OTQsMjEgMjMuMDY2LDIwLjkxMiAyMy4yOTksMjAuNzY1IEwyNC42NTQsMjIuMTUyIEMyNC4yNTEsMjIuNjYzIDI0LDIzLjMgMjQsMjQgQzI0LDI0LjEyOCAyNC4wMjIsMjQuMjUgMjQuMDM4LDI0LjM3NCBMMjIuNTAyLDI0LjY5MyBDMjIuMTM1LDI0LjI3MiAyMS42MDIsMjQgMjEsMjQgQzE5Ljg5NywyNCAxOSwyNC44OTcgMTksMjYgQzE5LDI3LjEwMyAxOS44OTcsMjggMjEsMjggQzIyLjEwMywyOCAyMywyNy4xMDMgMjMsMjYgQzIzLDI1Ljg3IDIyLjk4NSwyNS43NDMgMjIuOTYyLDI1LjYxOSBMMjQuMzI4LDI1LjMzNSBDMjQuODIxLDI2LjMxOCAyNS44MjgsMjcgMjcsMjcgQzI3LjAwNywyNyAyNy4wMTQsMjYuOTk4IDI3LjAyLDI2Ljk5OCBMMjcuMjIzLDMwLjE1OCBDMjYuNTA1LDMwLjQ2MSAyNiwzMS4xNzMgMjYsMzIgQzI2LDMzLjEwMyAyNi44OTcsMzQgMjgsMzQgQzI5LjEwMywzNCAzMCwzMy4xMDMgMzAsMzIgQzMwLDMxLjkyNSAyOS45ODYsMzEuODU0IDI5Ljk3OCwzMS43OCBMMzEuNTk0LDMwLjY4NyBDMzEuODQ3LDMwLjg4IDMyLjE1OCwzMSAzMi41LDMxIEMzMy4zMjcsMzEgMzQsMzAuMzI3IDM0LDI5LjUgQzM0LDI4LjY3MyAzMy4zMjcsMjggMzIuNSwyOCBMMzIuNSwyOCBaIE0xNSw3IEMxOS43MTUsNyAyMyw4LjU4MSAyMywxMCBDMjMsMTEuNDE5IDE5LjcxNSwxMyAxNSwxMyBDMTAuMjg1LDEzIDcsMTEuNDE5IDcsMTAgQzcsOC41ODEgMTAuMjg1LDcgMTUsNyBMMTUsNyBaIE0yMywyOS42NDIgQzIzLDMwLjk5NiAxOS43MTUsMzIuNTA0IDE1LDMyLjUwNCBDMTAuMjg1LDMyLjUwNCA3LDMwLjk5NiA3LDI5LjY0MiBMNywyNS41NzQgQzguNjQyLDI2LjkzMSAxMi4wNywyNy43MDQgMTUuNDI1LDI3LjcwNCBDMTYuMjYxLDI3LjcwNCAxNy4xMDYsMjcuNjU2IDE3LjkzNywyNy41NjMgTDE3LjgyNSwyNi41NjkgQzE3LjAzMSwyNi42NTggMTYuMjI0LDI2LjcwNCAxNS40MjUsMjYuNzA0IEMxMC42MDMsMjYuNzA0IDcsMjUuMTYgNywyMy43OCBMNywxOC44NSBDOC42NDIsMjAuMjA3IDEyLjA3LDIwLjk3OSAxNS40MjUsMjAuOTc5IEMxNy4xMjcsMjAuOTc5IDE4Ljc4LDIwLjc4NyAyMC4yMDUsMjAuNDI0IEwxOS45NTksMTkuNDU1IEMxOC42MTIsMTkuNzk4IDE3LjA0NSwxOS45NzkgMTUuNDI1LDE5Ljk3OSBDMTAuNjAzLDE5Ljk3OSA3LDE4LjQzNiA3LDE3LjA1NyBMNywxMS44ODcgQzguNDY5LDEzLjE2NCAxMS40MjYsMTQgMTUsMTQgQzE4LjU3NCwxNCAyMS41MzEsMTMuMTY0IDIzLDExLjg4NyBMMjMsMTcgTDI0LDE3IEwyNCwxMCBDMjQsNy43MiAyMC4xMzEsNiAxNSw2IEM5Ljg2OSw2IDYsNy43MiA2LDEwIEw2LDI5LjY0MiBDNiwzMS44NDQgOS44NjksMzMuNTA0IDE1LDMzLjUwNCBDMjAuMTMxLDMzLjUwNCAyNCwzMS44NDQgMjQsMjkuNjQyIEwyNCwyNyBMMjMsMjcgTDIzLDI5LjY0MiBaIiBpZD0iQW1hem9uLU5lcHR1bmVfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1OZXB0dW5lXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0zMi41LDMwIEMzMi4yMjUsMzAgMzIsMjkuNzc2IDMyLDI5LjUgQzMyLDI5LjIyNCAzMi4yMjUsMjkgMzIuNSwyOSBDMzIuNzc1LDI5IDMzLDI5LjIyNCAzMywyOS41IEMzMywyOS43NzYgMzIuNzc1LDMwIDMyLjUsMzAgTDMyLjUsMzAgWiBNMjgsMzMgQzI3LjQ0OCwzMyAyNywzMi41NTEgMjcsMzIgQzI3LDMxLjQ0OSAyNy40NDgsMzEgMjgsMzEgQzI4LjU1MiwzMSAyOSwzMS40NDkgMjksMzIgQzI5LDMyLjU1MSAyOC41NTIsMzMgMjgsMzMgTDI4LDMzIFogTTI1LDI0IEMyNSwyMi44OTcgMjUuODk3LDIyIDI3LDIyIEMyOC4xMDMsMjIgMjksMjIuODk3IDI5LDI0IEMyOSwyNS4xMDMgMjguMTAzLDI2IDI3LDI2IEMyNS44OTcsMjYgMjUsMjUuMTAzIDI1LDI0IEwyNSwyNCBaIE0yMi41LDIwIEMyMi4yMjUsMjAgMjIsMTkuNzc2IDIyLDE5LjUgQzIyLDE5LjIyNCAyMi4yMjUsMTkgMjIuNSwxOSBDMjIuNzc1LDE5IDIzLDE5LjIyNCAyMywxOS41IEMyMywxOS43NzYgMjIuNzc1LDIwIDIyLjUsMjAgTDIyLjUsMjAgWiBNMzIsMTYgQzMyLjU1MiwxNiAzMywxNi40NDkgMzMsMTcgQzMzLDE3LjU1MSAzMi41NTIsMTggMzIsMTggQzMxLjQ0OCwxOCAzMSwxNy41NTEgMzEsMTcgQzMxLDE2LjQ0OSAzMS40NDgsMTYgMzIsMTYgTDMyLDE2IFogTTIxLDI3IEMyMC40NDgsMjcgMjAsMjYuNTUxIDIwLDI2IEMyMCwyNS40NDkgMjAuNDQ4LDI1IDIxLDI1IEMyMS41NTIsMjUgMjIsMjUuNDQ5IDIyLDI2IEMyMiwyNi41NTEgMjEuNTUyLDI3IDIxLDI3IEwyMSwyNyBaIE0zMi41LDI4IEMzMS42NzMsMjggMzEsMjguNjczIDMxLDI5LjUgQzMxLDI5LjYyMSAzMS4wMTksMjkuNzM4IDMxLjA0NiwyOS44NTEgTDI5LjYwOCwzMC44MjMgQzI5LjI4NSwzMC4zODIgMjguNzg3LDMwLjA4NCAyOC4yMTYsMzAuMDIyIEwyOC4wMSwyNi44MTIgQzI5LjE2NiwyNi4zOTYgMzAsMjUuMjk4IDMwLDI0IEMzMCwyMy4yNDIgMjkuNzA4LDIyLjU1NyAyOS4yNDMsMjIuMDI4IEwzMS4zNjksMTguODg4IEMzMS41NjgsMTguOTU1IDMxLjc3OCwxOSAzMiwxOSBDMzMuMTAzLDE5IDM0LDE4LjEwMyAzNCwxNyBDMzQsMTUuODk3IDMzLjEwMywxNSAzMiwxNSBDMzAuODk3LDE1IDMwLDE1Ljg5NyAzMCwxNyBDMzAsMTcuNTIgMzAuMjA0LDE3Ljk4OSAzMC41MjksMTguMzQ1IEwyOC40NjMsMjEuMzk3IEMyOC4wMjgsMjEuMTUyIDI3LjUzNCwyMSAyNywyMSBDMjYuNDA3LDIxIDI1Ljg1NywyMS4xNzggMjUuMzkzLDIxLjQ3NiBMMjMuOTE4LDE5Ljk2OCBDMjMuOTY3LDE5LjgyIDI0LDE5LjY2NSAyNCwxOS41IEMyNCwxOC42NzMgMjMuMzI3LDE4IDIyLjUsMTggQzIxLjY3MywxOCAyMSwxOC42NzMgMjEsMTkuNSBDMjEsMjAuMzI3IDIxLjY3MywyMSAyMi41LDIxIEMyMi43OTQsMjEgMjMuMDY2LDIwLjkxMiAyMy4yOTksMjAuNzY1IEwyNC42NTQsMjIuMTUyIEMyNC4yNTEsMjIuNjYzIDI0LDIzLjMgMjQsMjQgQzI0LDI0LjEyOCAyNC4wMjIsMjQuMjUgMjQuMDM4LDI0LjM3NCBMMjIuNTAyLDI0LjY5MyBDMjIuMTM1LDI0LjI3MiAyMS42MDIsMjQgMjEsMjQgQzE5Ljg5NywyNCAxOSwyNC44OTcgMTksMjYgQzE5LDI3LjEwMyAxOS44OTcsMjggMjEsMjggQzIyLjEwMywyOCAyMywyNy4xMDMgMjMsMjYgQzIzLDI1Ljg3IDIyLjk4NSwyNS43NDMgMjIuOTYyLDI1LjYxOSBMMjQuMzI4LDI1LjMzNSBDMjQuODIxLDI2LjMxOCAyNS44MjgsMjcgMjcsMjcgQzI3LjAwNywyNyAyNy4wMTQsMjYuOTk4IDI3LjAyLDI2Ljk5OCBMMjcuMjIzLDMwLjE1OCBDMjYuNTA1LDMwLjQ2MSAyNiwzMS4xNzMgMjYsMzIgQzI2LDMzLjEwMyAyNi44OTcsMzQgMjgsMzQgQzI5LjEwMywzNCAzMCwzMy4xMDMgMzAsMzIgQzMwLDMxLjkyNSAyOS45ODYsMzEuODU0IDI5Ljk3OCwzMS43OCBMMzEuNTk0LDMwLjY4NyBDMzEuODQ3LDMwLjg4IDMyLjE1OCwzMSAzMi41LDMxIEMzMy4zMjcsMzEgMzQsMzAuMzI3IDM0LDI5LjUgQzM0LDI4LjY3MyAzMy4zMjcsMjggMzIuNSwyOCBMMzIuNSwyOCBaIE0xNSw3IEMxOS43MTUsNyAyMyw4LjU4MSAyMywxMCBDMjMsMTEuNDE5IDE5LjcxNSwxMyAxNSwxMyBDMTAuMjg1LDEzIDcsMTEuNDE5IDcsMTAgQzcsOC41ODEgMTAuMjg1LDcgMTUsNyBMMTUsNyBaIE0yMywyOS42NDIgQzIzLDMwLjk5NiAxOS43MTUsMzIuNTA0IDE1LDMyLjUwNCBDMTAuMjg1LDMyLjUwNCA3LDMwLjk5NiA3LDI5LjY0MiBMNywyNS41NzQgQzguNjQyLDI2LjkzMSAxMi4wNywyNy43MDQgMTUuNDI1LDI3LjcwNCBDMTYuMjYxLDI3LjcwNCAxNy4xMDYsMjcuNjU2IDE3LjkzNywyNy41NjMgTDE3LjgyNSwyNi41NjkgQzE3LjAzMSwyNi42NTggMTYuMjI0LDI2LjcwNCAxNS40MjUsMjYuNzA0IEMxMC42MDMsMjYuNzA0IDcsMjUuMTYgNywyMy43OCBMNywxOC44NSBDOC42NDIsMjAuMjA3IDEyLjA3LDIwLjk3OSAxNS40MjUsMjAuOTc5IEMxNy4xMjcsMjAuOTc5IDE4Ljc4LDIwLjc4NyAyMC4yMDUsMjAuNDI0IEwxOS45NTksMTkuNDU1IEMxOC42MTIsMTkuNzk4IDE3LjA0NSwxOS45NzkgMTUuNDI1LDE5Ljk3OSBDMTAuNjAzLDE5Ljk3OSA3LDE4LjQzNiA3LDE3LjA1NyBMNywxMS44ODcgQzguNDY5LDEzLjE2NCAxMS40MjYsMTQgMTUsMTQgQzE4LjU3NCwxNCAyMS41MzEsMTMuMTY0IDIzLDExLjg4NyBMMjMsMTcgTDI0LDE3IEwyNCwxMCBDMjQsNy43MiAyMC4xMzEsNiAxNSw2IEM5Ljg2OSw2IDYsNy43MiA2LDEwIEw2LDI5LjY0MiBDNiwzMS44NDQgOS44NjksMzMuNTA0IDE1LDMzLjUwNCBDMjAuMTMxLDMzLjUwNCAyNCwzMS44NDQgMjQsMjkuNjQyIEwyNCwyNyBMMjMsMjcgTDIzLDI5LjY0MiBaIiBpZD0iQW1hem9uLU5lcHR1bmVfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amazon Neptun", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "60555bb9-fd44-44a1-9f6e-3c0eb3fa4187": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "16", + zIndex: "16", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Germlin Function", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(237,113,0)", + backgroundColor: "rgb(237,113,0)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,135,0)", + borderColor: "rgb(255,135,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Germlin Function", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6e422442-670a-4fee-b031-790bcac94b32": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "23", + zIndex: "23", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "AppSync", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(231,21,123)", + backgroundColor: "rgb(231,21,123)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,25,147)", + borderColor: "rgb(255,25,147)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtQXBwU3luY18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FXUy1BcHBTeW5jIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2LjAwMDAwMCwgNy4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIj4gPHBhdGggZD0iTTI3LjU3ODgxMTYsNy41MjcwODcwMiBMMjUuODEzODMxOSw2LjcyNTIwMzQxIEMyOC4zNTA5OTAzLDExLjQwNjMxIDI3LjY2MDA0MDgsMTcuNDExMDY3IDIzLjkxNzQ4MTUsMjEuNTg0MjE1MyBDMjEuMzQ0MjIxMiwyNC40NTM0Mzk3IDE3LjYxOTcxMjgsMjYgMTMuODM0MDMxNywyNiBDMTEuOTUwNzE4MSwyNiAxMC4wNTIzNjIsMjUuNjE3MzA1MiA4LjI3MjMzOTgyLDI0LjgyNDI5ODYgTDguNjg1NTA1NTMsMjMuOTI1NzU0OSBDMTMuNjQ2NTAyNiwyNi4xMzYxMTMxIDE5LjYwMDMwMDgsMjQuOTA1MTc3NCAyMy4xNjUzNTk0LDIwLjkzMjI1MzQgQzI2LjY4MTI3OTMsMTcuMDExNjA0NyAyNy4yOTUwMTA5LDExLjM0OTEwMyAyNC44MjcwNDc3LDYuOTk4NDE1OSBMMjQuNTIyMTg3Niw5LjEyMDk5MDk5IEwyMy41MjkzODY1LDguOTgyOTA1MjUgTDI0LjAyNDc4NDIsNS41MjQ4NDM4IEMyNC4wNDc4NDkzLDUuMzY5OTkwNSAyNC4xNDIxMTUzLDUuMjM1ODUwMDcgMjQuMjgxNTA4NSw1LjE2MDg4OTI0IEMyNC40MjA5MDE4LDUuMDg1OTI4NDEgMjQuNTg5Mzc3Miw1LjA4MDk5Njc4IDI0LjczMTc3ODksNS4xNDYwOTQzNCBMMjgsNi42MzE1MDIzNyBMMjcuNTc4ODExNiw3LjUyNzA4NzAyIFogTTQuODc0NzUzNzcsNS4wNjIyNTY1NyBDMS4zNDY3OTk5LDguOTk2NzEzODIgMC43NTMxMjQ4ODgsMTMuODc2MDcyMSAzLjE4Nzk5NDcsMTguMDc0ODY0OSBMMy40NzE3OTU0MiwxNS44OTMxMTAyIEw0LjQ2NjYwMjIsMTYuMDE4MzczNyBMNC4wMDczMDYzMywxOS41NTMzNjg2IEMzLjk4NzI0OTc0LDE5LjcxMDE5NDYgMy44OTA5NzgxMiwxOS44NDgyODAzIDMuNzQ4NTc2MzQsMTkuOTI0MjI3NSBDMy42NzQzNjY5NiwxOS45NjM2ODA1IDMuNTkyMTM0OTUsMTkuOTgzNDA3MSAzLjUwOTkwMjk0LDE5Ljk4MzQwNzEgQzMuNDM1NjkzNTYsMTkuOTgzNDA3MSAzLjM2MTQ4NDE5LDE5Ljk2NzYyNTggMy4yOTIyODg5NiwxOS45MzUwNzcxIEwwLDE4LjM3MjczNTUgTDAuNDM1MjI3OTY1LDE3LjQ4NTA0MTUgTDIuMTc0MTM0MTYsMTguMzA5NjEwNiBDLTAuMzE1ODkxMjY1LDEzLjc5NDIwNjkgMC4zNjIwMjE0MTgsOC42MDMxNjk0NiA0LjEyMjYzMTcxLDQuNDEwMjk0NjEgQzcuOTcwNDg4MTYsMC4xMjE3NDYwNzMgMTQuMzg3NTkzNiwtMS4yMDc4MjIzMyAxOS43MjA2NDA0LDEuMTY5MjI1MDQgTDE5LjMwNzQ3NDcsMi4wNjc3Njg2NyBDMTQuMzY1NTMxMywtMC4xMzU2ODUxOTkgOC40MzI3OTI1MiwxLjA5NzIyMzE5IDQuODc0NzUzNzcsNS4wNjIyNTY1NyBMNC44NzQ3NTM3Nyw1LjA2MjI1NjU3IFogTTguNDA4NzI0NjIsMTYuNDg5ODM3OCBDOC40MDg3MjQ2MiwxNS44MTAyNTg3IDguOTcwMzA5MDksMTUuMjU2OTI5NSA5LjY2MjI2MTM4LDE1LjI1NjkyOTUgQzEwLjM1MzIxMDgsMTUuMjU2OTI5NSAxMC45MTU3OTgxLDE1LjgxMDI1ODcgMTAuOTE1Nzk4MSwxNi40ODk4Mzc4IEMxMC45MTU3OTgxLDE3LjE3MDQwMzMgMTAuMzUzMjEwOCwxNy43MjI3NDYyIDkuNjYyMjYxMzgsMTcuNzIyNzQ2MiBDOC45NzAzMDkwOSwxNy43MjI3NDYyIDguNDA4NzI0NjIsMTcuMTcwNDAzMyA4LjQwODcyNDYyLDE2LjQ4OTgzNzggTDguNDA4NzI0NjIsMTYuNDg5ODM3OCBaIE0xMy42ODk2MjQzLDEwLjUwMjgzNDcgQzEzLjg5MjE5NTgsMTAuNTYxMDI4IDE0LjEwMTc4NzIsMTAuNjAyNDUzNyAxNC4zMjE0MDY4LDEwLjYwMjQ1MzcgQzE0LjUyNzk4OTcsMTAuNjAyNDUzNyAxNC43MjQ1NDQyLDEwLjU2NTk1OTYgMTQuOTE0MDc5LDEwLjUxNDY3MDYgTDE2Ljk5Mjk0NDQsMTQuNzE1NDM2MSBDMTYuNTY4NzQ3NSwxNS4wMjUxNDI3IDE2LjI1ODg3MzIsMTUuNDc0OTA3NyAxNi4xMzc1MzA5LDE1Ljk5NjY3NDUgTDExLjg1NzQ1NSwxNS45OTY2NzQ1IEMxMS43MzkxMjExLDE1LjQ4Njc0MzYgMTEuNDM5Mjc1MSwxNS4wNDc4MjgyIDExLjAzMTEyMzUsMTQuNzM4MTIxNiBMMTMuNjg5NjI0MywxMC41MDI4MzQ3IFogTTE0LjMyMTQwNjgsNy4xNDkzMjM4OSBDMTUuMDEzMzU5MSw3LjE0OTMyMzg5IDE1LjU3NTk0NjQsNy43MDI2NTMxOCAxNS41NzU5NDY0LDguMzgyMjMyMjggQzE1LjU3NTk0NjQsOS4wNjI3OTc3MSAxNS4wMTMzNTkxLDkuNjE2MTI3IDE0LjMyMTQwNjgsOS42MTYxMjcgQzEzLjYzMDQ1NzQsOS42MTYxMjcgMTMuMDY3ODcwMSw5LjA2Mjc5NzcxIDEzLjA2Nzg3MDEsOC4zODIyMzIyOCBDMTMuMDY3ODcwMSw3LjcwMjY1MzE4IDEzLjYzMDQ1NzQsNy4xNDkzMjM4OSAxNC4zMjE0MDY4LDcuMTQ5MzIzODkgTDE0LjMyMTQwNjgsNy4xNDkzMjM4OSBaIE0xOS41ODYyNjEyLDE2LjQ4OTgzNzggQzE5LjU4NjI2MTIsMTcuMTcwNDAzMyAxOS4wMjQ2NzY4LDE3LjcyMjc0NjIgMTguMzMyNzI0NSwxNy43MjI3NDYyIEMxNy42NDE3NzUsMTcuNzIyNzQ2MiAxNy4wNzkxODc3LDE3LjE3MDQwMzMgMTcuMDc5MTg3NywxNi40ODk4Mzc4IEMxNy4wNzkxODc3LDE1LjgxMDI1ODcgMTcuNjQxNzc1LDE1LjI1NjkyOTUgMTguMzMyNzI0NSwxNS4yNTY5Mjk1IEMxOS4wMjQ2NzY4LDE1LjI1NjkyOTUgMTkuNTg2MjYxMiwxNS44MTAyNTg3IDE5LjU4NjI2MTIsMTYuNDg5ODM3OCBMMTkuNTg2MjYxMiwxNi40ODk4Mzc4IFogTTExLjg1NzQ1NSwxNi45ODMwMDEyIEwxNi4xMzc1MzA5LDE2Ljk4MzAwMTIgQzE2LjM2NjE3NiwxNy45NjkzMjc5IDE3LjI2MjcwNTUsMTguNzA5MDcyOSAxOC4zMzI3MjQ1LDE4LjcwOTA3MjkgQzE5LjU3NzIzNTgsMTguNzA5MDcyOSAyMC41ODkwOTA2LDE3LjcxMzg2OTMgMjAuNTg5MDkwNiwxNi40ODk4Mzc4IEMyMC41ODkwOTA2LDE1LjI2Njc5MjcgMTkuNTc3MjM1OCwxNC4yNzA2MDI3IDE4LjMzMjcyNDUsMTQuMjcwNjAyNyBDMTguMTg3MzE0MiwxNC4yNzA2MDI3IDE4LjA0NTkxNTMsMTQuMjg3MzcwMyAxNy45MDg1Mjc2LDE0LjMxMzAxNDggTDE1Ljc5ODU3NDUsMTAuMDQ4MTM4MSBDMTYuMjcyOTEyOSw5LjY0MDc4NTE2IDE2LjU3ODc3NTgsOS4wNDg5ODkxNCAxNi41Nzg3NzU4LDguMzgyMjMyMjggQzE2LjU3ODc3NTgsNy4xNTgyMDA4MyAxNS41NjU5MTgxLDYuMTYyOTk3MTggMTQuMzIxNDA2OCw2LjE2Mjk5NzE4IEMxMy4wNzc4OTg0LDYuMTYyOTk3MTggMTIuMDY1MDQwNyw3LjE1ODIwMDgzIDEyLjA2NTA0MDcsOC4zODIyMzIyOCBDMTIuMDY1MDQwNyw5LjAzMzIwNzkxIDEyLjM1Njg2NCw5LjYxNDE1NDM0IDEyLjgxMjE0ODYsMTAuMDIwNTIwOSBMMTAuMTE2NTQzMSwxNC4zMTU5NzM4IEM5Ljk2OTEyNzE4LDE0LjI4NjM4NCA5LjgxNzY5OTk0LDE0LjI3MDYwMjcgOS42NjIyNjEzOCwxNC4yNzA2MDI3IEM4LjQxODc1MjkxLDE0LjI3MDYwMjcgNy40MDU4OTUyLDE1LjI2Njc5MjcgNy40MDU4OTUyLDE2LjQ4OTgzNzggQzcuNDA1ODk1MiwxNy43MTM4NjkzIDguNDE4NzUyOTEsMTguNzA5MDcyOSA5LjY2MjI2MTM4LDE4LjcwOTA3MjkgQzEwLjczMjI4MDQsMTguNzA5MDcyOSAxMS42Mjg4MDk5LDE3Ljk2OTMyNzkgMTEuODU3NDU1LDE2Ljk4MzAwMTIgTDExLjg1NzQ1NSwxNi45ODMwMDEyIFoiIGlkPSJBV1MtQXBwU3luYy1JY29uXzMyX1NxdWlkIj48L3BhdGg+IDwvZz4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtQXBwU3luY18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FXUy1BcHBTeW5jIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2LjAwMDAwMCwgNy4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIj4gPHBhdGggZD0iTTI3LjU3ODgxMTYsNy41MjcwODcwMiBMMjUuODEzODMxOSw2LjcyNTIwMzQxIEMyOC4zNTA5OTAzLDExLjQwNjMxIDI3LjY2MDA0MDgsMTcuNDExMDY3IDIzLjkxNzQ4MTUsMjEuNTg0MjE1MyBDMjEuMzQ0MjIxMiwyNC40NTM0Mzk3IDE3LjYxOTcxMjgsMjYgMTMuODM0MDMxNywyNiBDMTEuOTUwNzE4MSwyNiAxMC4wNTIzNjIsMjUuNjE3MzA1MiA4LjI3MjMzOTgyLDI0LjgyNDI5ODYgTDguNjg1NTA1NTMsMjMuOTI1NzU0OSBDMTMuNjQ2NTAyNiwyNi4xMzYxMTMxIDE5LjYwMDMwMDgsMjQuOTA1MTc3NCAyMy4xNjUzNTk0LDIwLjkzMjI1MzQgQzI2LjY4MTI3OTMsMTcuMDExNjA0NyAyNy4yOTUwMTA5LDExLjM0OTEwMyAyNC44MjcwNDc3LDYuOTk4NDE1OSBMMjQuNTIyMTg3Niw5LjEyMDk5MDk5IEwyMy41MjkzODY1LDguOTgyOTA1MjUgTDI0LjAyNDc4NDIsNS41MjQ4NDM4IEMyNC4wNDc4NDkzLDUuMzY5OTkwNSAyNC4xNDIxMTUzLDUuMjM1ODUwMDcgMjQuMjgxNTA4NSw1LjE2MDg4OTI0IEMyNC40MjA5MDE4LDUuMDg1OTI4NDEgMjQuNTg5Mzc3Miw1LjA4MDk5Njc4IDI0LjczMTc3ODksNS4xNDYwOTQzNCBMMjgsNi42MzE1MDIzNyBMMjcuNTc4ODExNiw3LjUyNzA4NzAyIFogTTQuODc0NzUzNzcsNS4wNjIyNTY1NyBDMS4zNDY3OTk5LDguOTk2NzEzODIgMC43NTMxMjQ4ODgsMTMuODc2MDcyMSAzLjE4Nzk5NDcsMTguMDc0ODY0OSBMMy40NzE3OTU0MiwxNS44OTMxMTAyIEw0LjQ2NjYwMjIsMTYuMDE4MzczNyBMNC4wMDczMDYzMywxOS41NTMzNjg2IEMzLjk4NzI0OTc0LDE5LjcxMDE5NDYgMy44OTA5NzgxMiwxOS44NDgyODAzIDMuNzQ4NTc2MzQsMTkuOTI0MjI3NSBDMy42NzQzNjY5NiwxOS45NjM2ODA1IDMuNTkyMTM0OTUsMTkuOTgzNDA3MSAzLjUwOTkwMjk0LDE5Ljk4MzQwNzEgQzMuNDM1NjkzNTYsMTkuOTgzNDA3MSAzLjM2MTQ4NDE5LDE5Ljk2NzYyNTggMy4yOTIyODg5NiwxOS45MzUwNzcxIEwwLDE4LjM3MjczNTUgTDAuNDM1MjI3OTY1LDE3LjQ4NTA0MTUgTDIuMTc0MTM0MTYsMTguMzA5NjEwNiBDLTAuMzE1ODkxMjY1LDEzLjc5NDIwNjkgMC4zNjIwMjE0MTgsOC42MDMxNjk0NiA0LjEyMjYzMTcxLDQuNDEwMjk0NjEgQzcuOTcwNDg4MTYsMC4xMjE3NDYwNzMgMTQuMzg3NTkzNiwtMS4yMDc4MjIzMyAxOS43MjA2NDA0LDEuMTY5MjI1MDQgTDE5LjMwNzQ3NDcsMi4wNjc3Njg2NyBDMTQuMzY1NTMxMywtMC4xMzU2ODUxOTkgOC40MzI3OTI1MiwxLjA5NzIyMzE5IDQuODc0NzUzNzcsNS4wNjIyNTY1NyBMNC44NzQ3NTM3Nyw1LjA2MjI1NjU3IFogTTguNDA4NzI0NjIsMTYuNDg5ODM3OCBDOC40MDg3MjQ2MiwxNS44MTAyNTg3IDguOTcwMzA5MDksMTUuMjU2OTI5NSA5LjY2MjI2MTM4LDE1LjI1NjkyOTUgQzEwLjM1MzIxMDgsMTUuMjU2OTI5NSAxMC45MTU3OTgxLDE1LjgxMDI1ODcgMTAuOTE1Nzk4MSwxNi40ODk4Mzc4IEMxMC45MTU3OTgxLDE3LjE3MDQwMzMgMTAuMzUzMjEwOCwxNy43MjI3NDYyIDkuNjYyMjYxMzgsMTcuNzIyNzQ2MiBDOC45NzAzMDkwOSwxNy43MjI3NDYyIDguNDA4NzI0NjIsMTcuMTcwNDAzMyA4LjQwODcyNDYyLDE2LjQ4OTgzNzggTDguNDA4NzI0NjIsMTYuNDg5ODM3OCBaIE0xMy42ODk2MjQzLDEwLjUwMjgzNDcgQzEzLjg5MjE5NTgsMTAuNTYxMDI4IDE0LjEwMTc4NzIsMTAuNjAyNDUzNyAxNC4zMjE0MDY4LDEwLjYwMjQ1MzcgQzE0LjUyNzk4OTcsMTAuNjAyNDUzNyAxNC43MjQ1NDQyLDEwLjU2NTk1OTYgMTQuOTE0MDc5LDEwLjUxNDY3MDYgTDE2Ljk5Mjk0NDQsMTQuNzE1NDM2MSBDMTYuNTY4NzQ3NSwxNS4wMjUxNDI3IDE2LjI1ODg3MzIsMTUuNDc0OTA3NyAxNi4xMzc1MzA5LDE1Ljk5NjY3NDUgTDExLjg1NzQ1NSwxNS45OTY2NzQ1IEMxMS43MzkxMjExLDE1LjQ4Njc0MzYgMTEuNDM5Mjc1MSwxNS4wNDc4MjgyIDExLjAzMTEyMzUsMTQuNzM4MTIxNiBMMTMuNjg5NjI0MywxMC41MDI4MzQ3IFogTTE0LjMyMTQwNjgsNy4xNDkzMjM4OSBDMTUuMDEzMzU5MSw3LjE0OTMyMzg5IDE1LjU3NTk0NjQsNy43MDI2NTMxOCAxNS41NzU5NDY0LDguMzgyMjMyMjggQzE1LjU3NTk0NjQsOS4wNjI3OTc3MSAxNS4wMTMzNTkxLDkuNjE2MTI3IDE0LjMyMTQwNjgsOS42MTYxMjcgQzEzLjYzMDQ1NzQsOS42MTYxMjcgMTMuMDY3ODcwMSw5LjA2Mjc5NzcxIDEzLjA2Nzg3MDEsOC4zODIyMzIyOCBDMTMuMDY3ODcwMSw3LjcwMjY1MzE4IDEzLjYzMDQ1NzQsNy4xNDkzMjM4OSAxNC4zMjE0MDY4LDcuMTQ5MzIzODkgTDE0LjMyMTQwNjgsNy4xNDkzMjM4OSBaIE0xOS41ODYyNjEyLDE2LjQ4OTgzNzggQzE5LjU4NjI2MTIsMTcuMTcwNDAzMyAxOS4wMjQ2NzY4LDE3LjcyMjc0NjIgMTguMzMyNzI0NSwxNy43MjI3NDYyIEMxNy42NDE3NzUsMTcuNzIyNzQ2MiAxNy4wNzkxODc3LDE3LjE3MDQwMzMgMTcuMDc5MTg3NywxNi40ODk4Mzc4IEMxNy4wNzkxODc3LDE1LjgxMDI1ODcgMTcuNjQxNzc1LDE1LjI1NjkyOTUgMTguMzMyNzI0NSwxNS4yNTY5Mjk1IEMxOS4wMjQ2NzY4LDE1LjI1NjkyOTUgMTkuNTg2MjYxMiwxNS44MTAyNTg3IDE5LjU4NjI2MTIsMTYuNDg5ODM3OCBMMTkuNTg2MjYxMiwxNi40ODk4Mzc4IFogTTExLjg1NzQ1NSwxNi45ODMwMDEyIEwxNi4xMzc1MzA5LDE2Ljk4MzAwMTIgQzE2LjM2NjE3NiwxNy45NjkzMjc5IDE3LjI2MjcwNTUsMTguNzA5MDcyOSAxOC4zMzI3MjQ1LDE4LjcwOTA3MjkgQzE5LjU3NzIzNTgsMTguNzA5MDcyOSAyMC41ODkwOTA2LDE3LjcxMzg2OTMgMjAuNTg5MDkwNiwxNi40ODk4Mzc4IEMyMC41ODkwOTA2LDE1LjI2Njc5MjcgMTkuNTc3MjM1OCwxNC4yNzA2MDI3IDE4LjMzMjcyNDUsMTQuMjcwNjAyNyBDMTguMTg3MzE0MiwxNC4yNzA2MDI3IDE4LjA0NTkxNTMsMTQuMjg3MzcwMyAxNy45MDg1Mjc2LDE0LjMxMzAxNDggTDE1Ljc5ODU3NDUsMTAuMDQ4MTM4MSBDMTYuMjcyOTEyOSw5LjY0MDc4NTE2IDE2LjU3ODc3NTgsOS4wNDg5ODkxNCAxNi41Nzg3NzU4LDguMzgyMjMyMjggQzE2LjU3ODc3NTgsNy4xNTgyMDA4MyAxNS41NjU5MTgxLDYuMTYyOTk3MTggMTQuMzIxNDA2OCw2LjE2Mjk5NzE4IEMxMy4wNzc4OTg0LDYuMTYyOTk3MTggMTIuMDY1MDQwNyw3LjE1ODIwMDgzIDEyLjA2NTA0MDcsOC4zODIyMzIyOCBDMTIuMDY1MDQwNyw5LjAzMzIwNzkxIDEyLjM1Njg2NCw5LjYxNDE1NDM0IDEyLjgxMjE0ODYsMTAuMDIwNTIwOSBMMTAuMTE2NTQzMSwxNC4zMTU5NzM4IEM5Ljk2OTEyNzE4LDE0LjI4NjM4NCA5LjgxNzY5OTk0LDE0LjI3MDYwMjcgOS42NjIyNjEzOCwxNC4yNzA2MDI3IEM4LjQxODc1MjkxLDE0LjI3MDYwMjcgNy40MDU4OTUyLDE1LjI2Njc5MjcgNy40MDU4OTUyLDE2LjQ4OTgzNzggQzcuNDA1ODk1MiwxNy43MTM4NjkzIDguNDE4NzUyOTEsMTguNzA5MDcyOSA5LjY2MjI2MTM4LDE4LjcwOTA3MjkgQzEwLjczMjI4MDQsMTguNzA5MDcyOSAxMS42Mjg4MDk5LDE3Ljk2OTMyNzkgMTEuODU3NDU1LDE2Ljk4MzAwMTIgTDExLjg1NzQ1NSwxNi45ODMwMDEyIFoiIGlkPSJBV1MtQXBwU3luYy1JY29uXzMyX1NxdWlkIj48L3BhdGg+IDwvZz4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "AppSync", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4a47c821-bcf3-4621-9f0d-1d15fab35cdb": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "18", + zIndex: "18", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Search Function", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(237,113,0)", + backgroundColor: "rgb(237,113,0)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,135,0)", + borderColor: "rgb(255,135,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Search Function", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "906bfe13-9220-4eb4-8165-62c1b5a4e5d6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "10", + zIndex: "10", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "S3 bucket", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(122,161,22)", + backgroundColor: "rgb(122,161,22)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(146,193,26)", + borderColor: "rgb(146,193,26)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "S3 bucket", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "08bf65d5-8248-4376-b1ee-793a57ec045e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "26", + zIndex: "26", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Cost & Usage Report", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(122,161,22)", + backgroundColor: "rgb(122,161,22)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(146,193,26)", + borderColor: "rgb(146,193,26)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtQ29zdC1hbmQtVXNhZ2UtUmVwb3J0XzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yMS45ODc1NTg1LDIxLjA3MjI1NzcgTDI1Ljk5MTcwNTcsMjEuMDcyMjU3NyBMMjUuOTkxNzA1NywyMC4wNzI5NDk1IEwyMS45ODc1NTg1LDIwLjA3Mjk0OTUgTDIxLjk4NzU1ODUsMjEuMDcyMjU3NyBaIE0yOC45OTQ4MTYxLDIxLjA3MjI1NzcgTDMxLjk5NzkyNjQsMjEuMDcyMjU3NyBMMzEuOTk3OTI2NCwyMC4wNzI5NDk1IEwyOC45OTQ4MTYxLDIwLjA3Mjk0OTUgTDI4Ljk5NDgxNjEsMjEuMDcyMjU3NyBaIE0yMS45ODc1NTg1LDE5LjAyNjY3MzggTDI2Ljk5Mjc0MjUsMTkuMDI2NjczOCBMMjYuOTkyNzQyNSwxOC4wMjczNjU3IEwyMS45ODc1NTg1LDE4LjAyNzM2NTcgTDIxLjk4NzU1ODUsMTkuMDI2NjczOCBaIE04LjUwMTU5MDkzLDMyLjAwMDY5MTggQzcuNzQzODA2MDgsMzIuMDAwNjkxOCA3LjAwMTAzNjc5LDMxLjI1OTIwNTIgNy4wMDEwMzY3OSwzMC41MDM3MjgyIEM3LjAwMTAzNjc5LDI5Ljc0ODI1MTIgNy43NDM4MDYwOCwyOS4wMDU3NjUyIDguNTAxNTkwOTMsMjkuMDA1NzY1MiBDOS4yNTczNzM3MSwyOS4wMDU3NjUyIDEwLjAwMTE0NCwyOS43NDgyNTEyIDEwLjAwMTE0NCwzMC41MDM3MjgyIEMxMC4wMDExNDQsMzEuMjU5MjA1MiA5LjI1NzM3MzcxLDMyLjAwMDY5MTggOC41MDE1OTA5MywzMi4wMDA2OTE4IEw4LjUwMTU5MDkzLDMyLjAwMDY5MTggWiBNOC41MDE1OTA5MywyNC45ODQ1NDkyIEM3Ljc0MzgwNjA4LDI0Ljk4NDU0OTIgNy4wMDEwMzY3OSwyNC4yNDMwNjI1IDcuMDAxMDM2NzksMjMuNDg3NTg1NSBDNy4wMDEwMzY3OSwyMi43MzIxMDg1IDcuNzQzODA2MDgsMjEuOTg5NjIyNiA4LjUwMTU5MDkzLDIxLjk4OTYyMjYgQzkuMjU3MzczNzEsMjEuOTg5NjIyNiAxMC4wMDExNDQsMjIuNzMyMTA4NSAxMC4wMDExNDQsMjMuNDg3NTg1NSBDMTAuMDAxMTQ0LDI0LjI0MzA2MjUgOS4yNTczNzM3MSwyNC45ODQ1NDkyIDguNTAxNTkwOTMsMjQuOTg0NTQ5MiBMOC41MDE1OTA5MywyNC45ODQ1NDkyIFogTTguNTAxNTkwOTMsMTcuOTU0NDE2MiBDNy43NDM4MDYwOCwxNy45NTQ0MTYyIDcuMDAxMDM2NzksMTcuMjEyOTI5NSA3LjAwMTAzNjc5LDE2LjQ1NzQ1MjUgQzcuMDAxMDM2NzksMTUuNzAxOTc1NiA3Ljc0MzgwNjA4LDE0Ljk2MDQ4ODkgOC41MDE1OTA5MywxNC45NjA0ODg5IEM5LjI1NzM3MzcxLDE0Ljk2MDQ4ODkgMTAuMDAxMTQ0LDE1LjcwMTk3NTYgMTAuMDAxMTQ0LDE2LjQ1NzQ1MjUgQzEwLjAwMTE0NCwxNy4yMTI5Mjk1IDkuMjU3MzczNzEsMTcuOTU0NDE2MiA4LjUwMTU5MDkzLDE3Ljk1NDQxNjIgTDguNTAxNTkwOTMsMTcuOTU0NDE2MiBaIE04LjUwMTU5MDkzLDEwLjk5NDIzNDggQzcuNzcxODM1MTEsMTAuOTk0MjM0OCA3LjAwMTAzNjc5LDEwLjIyNDc2NzUgNy4wMDEwMzY3OSw5LjQ5NzI3MTEyIEM3LjAwMTAzNjc5LDguNzY5Nzc0NzcgNy43NzE4MzUxMSw3Ljk5OTMwODE3IDguNTAxNTkwOTMsNy45OTkzMDgxNyBDOS4yMjkzNDQ2OCw3Ljk5OTMwODE3IDEwLjAwMTE0NCw4Ljc2OTc3NDc3IDEwLjAwMTE0NCw5LjQ5NzI3MTEyIEMxMC4wMDExNDQsMTAuMjI0NzY3NSA5LjIyOTM0NDY4LDEwLjk5NDIzNDggOC41MDE1OTA5MywxMC45OTQyMzQ4IEw4LjUwMTU5MDkzLDEwLjk5NDIzNDggWiBNMjUuOTkxNzA1NywyMy45ODcyMzk2IEwyNS45OTE3MDU3LDIyLjk4NzkzMTQgTDE1LjkwMzI1NjksMjIuOTg3OTMxNCBMMTUuOTAzMjU2OSw5LjQ5NzI3MTEyIEMxNS45MDMyNTY5LDkuMjIxNDYyMDYgMTUuNjgwMDI1Nyw4Ljk5NzYxNzAzIDE1LjQwMjczODYsOC45OTc2MTcwMyBMMTAuOTM5MTE1NSw4Ljk5NzYxNzAzIEMxMC42Nzc4NDQ5LDcuOTE2MzY1NTkgOS42MTc3NDY5NSw3IDguNTAxNTkwOTMsNyBDNy4yMTUyNTg2Niw3IDYsOC4yMTQxNTk0MyA2LDkuNDk3MjcxMTIgQzYsMTAuNzgwMzgyOCA3LjIxNTI1ODY2LDExLjk5MzU0MjkgOC41MDE1OTA5MywxMS45OTM1NDI5IEM5LjYxNzc0Njk1LDExLjk5MzU0MjkgMTAuNjc3ODQ0OSwxMS4wNzgxNzY2IDEwLjkzOTExNTUsOS45OTY5MjUyMSBMMTQuOTAyMjIwMiw5Ljk5NjkyNTIxIEwxNC45MDIyMjAyLDE2LjA1NDczMTMgTDEwLjk1NzEzNDIsMTYuMDU0NzMxMyBDMTAuNzQ0OTE0NCwxNC45MTY1MTkzIDkuNjczODA1MDEsMTMuOTYxMTgwNyA4LjUwMTU5MDkzLDEzLjk2MTE4MDcgQzcuMTkyMjM0ODEsMTMuOTYxMTgwNyA2LDE1LjE1MTM1NjggNiwxNi40NTc0NTI1IEM2LDE3Ljc2NDU0NzYgNy4xOTIyMzQ4MSwxOC45NTM3MjQzIDguNTAxNTkwOTMsMTguOTUzNzI0MyBDOS42MDU3MzQ1MSwxOC45NTM3MjQzIDEwLjYxODc4MzcsMTguMTA0MzEyNCAxMC45MTAwODU0LDE3LjA1NDAzOTUgTDE0LjkwMjIyMDIsMTcuMDU0MDM5NSBMMTQuOTAyMjIwMiwyMi45ODc5MzE0IEwxMC45NDIxMTg2LDIyLjk4NzkzMTQgQzEwLjY4ODg1NjMsMjEuODkyNjg5NyA5LjYzOTc2OTc2LDIwLjk5MDMxNDQgOC41MDE1OTA5MywyMC45OTAzMTQ0IEM3LjE5MjIzNDgxLDIwLjk5MDMxNDQgNiwyMi4xODA0OTA0IDYsMjMuNDg3NTg1NSBDNiwyNC43OTQ2ODA2IDcuMTkyMjM0ODEsMjUuOTgzODU3MyA4LjUwMTU5MDkzLDI1Ljk4Mzg1NzMgQzkuNjM5NzY5NzYsMjUuOTgzODU3MyAxMC42ODg4NTYzLDI1LjA4MjQ4MTQgMTAuOTQyMTE4NiwyMy45ODcyMzk2IEwxNC45MDIyMjAyLDIzLjk4NzIzOTYgTDE0LjkwMjIyMDIsMzAuMDA0MDc0MSBMMTAuOTQyMTE4NiwzMC4wMDQwNzQxIEMxMC42ODg4NTYzLDI4LjkwODgzMjMgOS42Mzk3Njk3NiwyOC4wMDY0NTcxIDguNTAxNTkwOTMsMjguMDA2NDU3MSBDNy4xOTIyMzQ4MSwyOC4wMDY0NTcxIDYsMjkuMTk2NjMzMSA2LDMwLjUwMzcyODIgQzYsMzEuODA5ODI0IDcuMTkyMjM0ODEsMzMgOC41MDE1OTA5MywzMyBDOS42Mzk3Njk3NiwzMyAxMC42ODg4NTYzLDMyLjA5ODYyNCAxMC45NDIxMTg2LDMxLjAwMzM4MjMgTDE1LjQwMjczODYsMzEuMDAzMzgyMyBDMTUuNjgwMDI1NywzMS4wMDMzODIzIDE1LjkwMzI1NjksMzAuNzc5NTM3MiAxNS45MDMyNTY5LDMwLjUwMzcyODIgTDE1LjkwMzI1NjksMjMuOTg3MjM5NiBMMjUuOTkxNzA1NywyMy45ODcyMzk2IFogTTI3Ljk5Mzc3OTMsMjMuOTg3MjM5NiBMMzEuOTk3OTI2NCwyMy45ODcyMzk2IEwzMS45OTc5MjY0LDIyLjk4NzkzMTQgTDI3Ljk5Mzc3OTMsMjIuOTg3OTMxNCBMMjcuOTkzNzc5MywyMy45ODcyMzk2IFogTTI4Ljk5NDgxNjEsMTkuMDI2NjczOCBMMzEuOTk3OTI2NCwxOS4wMjY2NzM4IEwzMS45OTc5MjY0LDE4LjAyNzM2NTcgTDI4Ljk5NDgxNjEsMTguMDI3MzY1NyBMMjguOTk0ODE2MSwxOS4wMjY2NzM4IFogTTI4Ljk3ODc5OTUsMTAuODY2MzIzMyBMMjkuODA2NjU2OSwxMS44NDg2NDMyIEwzMi40MjQzNjgxLDE0Ljk1MTQ5NTEgTDI4Ljk3ODc5OTUsMTQuOTUxNDk1MSBMMjguOTc4Nzk5NSwxMC44NjYzMjMzIFogTTMzLjk5MTk5MTcsMTUuNDA3MTc5NiBDMzMuOTg5OTg5NiwxNS4zODkxOTIxIDMzLjk4Njk4NjUsMTUuMzc0MjAyNSAzMy45ODM5ODM0LDE1LjM1NzIxNDIgQzMzLjk2Njk2NTgsMTUuMjc0MjcxNyAzMy45Mzc5MzU3LDE1LjE5NDMyNyAzMy44ODI4Nzg3LDE1LjEyOTM3MiBMMjguODYwNjc3MSw5LjE3NTQ5Mzg5IEMyOC44MDE2MTYsOS4xMDQ1NDMwMSAyOC43MjE1MzMsOS4wNjA1NzM0NSAyOC42MzU0NDM5LDkuMDMyNTkyODIgQzI4LjYxMDQxNzksOS4wMjM1OTkwNSAyOC41ODgzOTUxLDkuMDIwNjAxMTIgMjguNTYzMzY5Miw5LjAxNjYwMzg5IEMyOC41MzQzMzkxLDkuMDExNjA3MzUgMjguNTA4MzEyMiw4Ljk5NzYxNzAzIDI4LjQ3ODI4MTEsOC45OTc2MTcwMyBMMjAuNDQzOTU5OCw4Ljk5NzYxNzAzIEMyMC4xNjc2NzM3LDguOTk3NjE3MDMgMTkuOTQzNDQxNCw5LjIyMTQ2MjA2IDE5Ljk0MzQ0MTQsOS40OTcyNzExMiBMMTkuOTQzNDQxNCwyMS45Njc2Mzc4IEwyMC45NDQ0NzgyLDIxLjk2NzYzNzggTDIwLjk0NDQ3ODIsOS45OTY5MjUyMSBMMjcuOTc3NzYyNyw5Ljk5NjkyNTIxIEwyNy45Nzc3NjI3LDE1LjQ1MTE0OTIgQzI3Ljk3Nzc2MjcsMTUuNzI2OTU4MyAyOC4yMDA5OTM5LDE1Ljk1MDgwMzMgMjguNDc4MjgxMSwxNS45NTA4MDMzIEwzMi45OTg5NjMyLDE1Ljk1MDgwMzMgTDMyLjk5ODk2MzIsMzAuMDA0MDc0MSBMMjAuOTQ0NDc4MiwzMC4wMDQwNzQxIEwyMC45NDQ0NzgyLDI0Ljk2NTU2MjMgTDE5Ljk0MzQ0MTQsMjQuOTY1NTYyMyBMMTkuOTQzNDQxNCwzMC41MDM3MjgyIEMxOS45NDM0NDE0LDMwLjc3OTUzNzIgMjAuMTY3NjczNywzMS4wMDMzODIzIDIwLjQ0Mzk1OTgsMzEuMDAzMzgyMyBMMzMuNDk5NDgxNiwzMS4wMDMzODIzIEMzMy43NzY3Njg4LDMxLjAwMzM4MjMgMzQsMzAuNzc5NTM3MiAzNCwzMC41MDM3MjgyIEwzNCwxNS40NTExNDkyIEMzNCwxNS40MzYxNTk2IDMzLjk5Mzk5MzgsMTUuNDIyMTY5MyAzMy45OTE5OTE3LDE1LjQwNzE3OTYgTDMzLjk5MTk5MTcsMTUuNDA3MTc5NiBaIiBpZD0iQVdTLUNvc3QtYW5kLVVzYWdlLVJlcG9ydF9JY29uXzMyX1NxdWlkIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtQ29zdC1hbmQtVXNhZ2UtUmVwb3J0XzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yMS45ODc1NTg1LDIxLjA3MjI1NzcgTDI1Ljk5MTcwNTcsMjEuMDcyMjU3NyBMMjUuOTkxNzA1NywyMC4wNzI5NDk1IEwyMS45ODc1NTg1LDIwLjA3Mjk0OTUgTDIxLjk4NzU1ODUsMjEuMDcyMjU3NyBaIE0yOC45OTQ4MTYxLDIxLjA3MjI1NzcgTDMxLjk5NzkyNjQsMjEuMDcyMjU3NyBMMzEuOTk3OTI2NCwyMC4wNzI5NDk1IEwyOC45OTQ4MTYxLDIwLjA3Mjk0OTUgTDI4Ljk5NDgxNjEsMjEuMDcyMjU3NyBaIE0yMS45ODc1NTg1LDE5LjAyNjY3MzggTDI2Ljk5Mjc0MjUsMTkuMDI2NjczOCBMMjYuOTkyNzQyNSwxOC4wMjczNjU3IEwyMS45ODc1NTg1LDE4LjAyNzM2NTcgTDIxLjk4NzU1ODUsMTkuMDI2NjczOCBaIE04LjUwMTU5MDkzLDMyLjAwMDY5MTggQzcuNzQzODA2MDgsMzIuMDAwNjkxOCA3LjAwMTAzNjc5LDMxLjI1OTIwNTIgNy4wMDEwMzY3OSwzMC41MDM3MjgyIEM3LjAwMTAzNjc5LDI5Ljc0ODI1MTIgNy43NDM4MDYwOCwyOS4wMDU3NjUyIDguNTAxNTkwOTMsMjkuMDA1NzY1MiBDOS4yNTczNzM3MSwyOS4wMDU3NjUyIDEwLjAwMTE0NCwyOS43NDgyNTEyIDEwLjAwMTE0NCwzMC41MDM3MjgyIEMxMC4wMDExNDQsMzEuMjU5MjA1MiA5LjI1NzM3MzcxLDMyLjAwMDY5MTggOC41MDE1OTA5MywzMi4wMDA2OTE4IEw4LjUwMTU5MDkzLDMyLjAwMDY5MTggWiBNOC41MDE1OTA5MywyNC45ODQ1NDkyIEM3Ljc0MzgwNjA4LDI0Ljk4NDU0OTIgNy4wMDEwMzY3OSwyNC4yNDMwNjI1IDcuMDAxMDM2NzksMjMuNDg3NTg1NSBDNy4wMDEwMzY3OSwyMi43MzIxMDg1IDcuNzQzODA2MDgsMjEuOTg5NjIyNiA4LjUwMTU5MDkzLDIxLjk4OTYyMjYgQzkuMjU3MzczNzEsMjEuOTg5NjIyNiAxMC4wMDExNDQsMjIuNzMyMTA4NSAxMC4wMDExNDQsMjMuNDg3NTg1NSBDMTAuMDAxMTQ0LDI0LjI0MzA2MjUgOS4yNTczNzM3MSwyNC45ODQ1NDkyIDguNTAxNTkwOTMsMjQuOTg0NTQ5MiBMOC41MDE1OTA5MywyNC45ODQ1NDkyIFogTTguNTAxNTkwOTMsMTcuOTU0NDE2MiBDNy43NDM4MDYwOCwxNy45NTQ0MTYyIDcuMDAxMDM2NzksMTcuMjEyOTI5NSA3LjAwMTAzNjc5LDE2LjQ1NzQ1MjUgQzcuMDAxMDM2NzksMTUuNzAxOTc1NiA3Ljc0MzgwNjA4LDE0Ljk2MDQ4ODkgOC41MDE1OTA5MywxNC45NjA0ODg5IEM5LjI1NzM3MzcxLDE0Ljk2MDQ4ODkgMTAuMDAxMTQ0LDE1LjcwMTk3NTYgMTAuMDAxMTQ0LDE2LjQ1NzQ1MjUgQzEwLjAwMTE0NCwxNy4yMTI5Mjk1IDkuMjU3MzczNzEsMTcuOTU0NDE2MiA4LjUwMTU5MDkzLDE3Ljk1NDQxNjIgTDguNTAxNTkwOTMsMTcuOTU0NDE2MiBaIE04LjUwMTU5MDkzLDEwLjk5NDIzNDggQzcuNzcxODM1MTEsMTAuOTk0MjM0OCA3LjAwMTAzNjc5LDEwLjIyNDc2NzUgNy4wMDEwMzY3OSw5LjQ5NzI3MTEyIEM3LjAwMTAzNjc5LDguNzY5Nzc0NzcgNy43NzE4MzUxMSw3Ljk5OTMwODE3IDguNTAxNTkwOTMsNy45OTkzMDgxNyBDOS4yMjkzNDQ2OCw3Ljk5OTMwODE3IDEwLjAwMTE0NCw4Ljc2OTc3NDc3IDEwLjAwMTE0NCw5LjQ5NzI3MTEyIEMxMC4wMDExNDQsMTAuMjI0NzY3NSA5LjIyOTM0NDY4LDEwLjk5NDIzNDggOC41MDE1OTA5MywxMC45OTQyMzQ4IEw4LjUwMTU5MDkzLDEwLjk5NDIzNDggWiBNMjUuOTkxNzA1NywyMy45ODcyMzk2IEwyNS45OTE3MDU3LDIyLjk4NzkzMTQgTDE1LjkwMzI1NjksMjIuOTg3OTMxNCBMMTUuOTAzMjU2OSw5LjQ5NzI3MTEyIEMxNS45MDMyNTY5LDkuMjIxNDYyMDYgMTUuNjgwMDI1Nyw4Ljk5NzYxNzAzIDE1LjQwMjczODYsOC45OTc2MTcwMyBMMTAuOTM5MTE1NSw4Ljk5NzYxNzAzIEMxMC42Nzc4NDQ5LDcuOTE2MzY1NTkgOS42MTc3NDY5NSw3IDguNTAxNTkwOTMsNyBDNy4yMTUyNTg2Niw3IDYsOC4yMTQxNTk0MyA2LDkuNDk3MjcxMTIgQzYsMTAuNzgwMzgyOCA3LjIxNTI1ODY2LDExLjk5MzU0MjkgOC41MDE1OTA5MywxMS45OTM1NDI5IEM5LjYxNzc0Njk1LDExLjk5MzU0MjkgMTAuNjc3ODQ0OSwxMS4wNzgxNzY2IDEwLjkzOTExNTUsOS45OTY5MjUyMSBMMTQuOTAyMjIwMiw5Ljk5NjkyNTIxIEwxNC45MDIyMjAyLDE2LjA1NDczMTMgTDEwLjk1NzEzNDIsMTYuMDU0NzMxMyBDMTAuNzQ0OTE0NCwxNC45MTY1MTkzIDkuNjczODA1MDEsMTMuOTYxMTgwNyA4LjUwMTU5MDkzLDEzLjk2MTE4MDcgQzcuMTkyMjM0ODEsMTMuOTYxMTgwNyA2LDE1LjE1MTM1NjggNiwxNi40NTc0NTI1IEM2LDE3Ljc2NDU0NzYgNy4xOTIyMzQ4MSwxOC45NTM3MjQzIDguNTAxNTkwOTMsMTguOTUzNzI0MyBDOS42MDU3MzQ1MSwxOC45NTM3MjQzIDEwLjYxODc4MzcsMTguMTA0MzEyNCAxMC45MTAwODU0LDE3LjA1NDAzOTUgTDE0LjkwMjIyMDIsMTcuMDU0MDM5NSBMMTQuOTAyMjIwMiwyMi45ODc5MzE0IEwxMC45NDIxMTg2LDIyLjk4NzkzMTQgQzEwLjY4ODg1NjMsMjEuODkyNjg5NyA5LjYzOTc2OTc2LDIwLjk5MDMxNDQgOC41MDE1OTA5MywyMC45OTAzMTQ0IEM3LjE5MjIzNDgxLDIwLjk5MDMxNDQgNiwyMi4xODA0OTA0IDYsMjMuNDg3NTg1NSBDNiwyNC43OTQ2ODA2IDcuMTkyMjM0ODEsMjUuOTgzODU3MyA4LjUwMTU5MDkzLDI1Ljk4Mzg1NzMgQzkuNjM5NzY5NzYsMjUuOTgzODU3MyAxMC42ODg4NTYzLDI1LjA4MjQ4MTQgMTAuOTQyMTE4NiwyMy45ODcyMzk2IEwxNC45MDIyMjAyLDIzLjk4NzIzOTYgTDE0LjkwMjIyMDIsMzAuMDA0MDc0MSBMMTAuOTQyMTE4NiwzMC4wMDQwNzQxIEMxMC42ODg4NTYzLDI4LjkwODgzMjMgOS42Mzk3Njk3NiwyOC4wMDY0NTcxIDguNTAxNTkwOTMsMjguMDA2NDU3MSBDNy4xOTIyMzQ4MSwyOC4wMDY0NTcxIDYsMjkuMTk2NjMzMSA2LDMwLjUwMzcyODIgQzYsMzEuODA5ODI0IDcuMTkyMjM0ODEsMzMgOC41MDE1OTA5MywzMyBDOS42Mzk3Njk3NiwzMyAxMC42ODg4NTYzLDMyLjA5ODYyNCAxMC45NDIxMTg2LDMxLjAwMzM4MjMgTDE1LjQwMjczODYsMzEuMDAzMzgyMyBDMTUuNjgwMDI1NywzMS4wMDMzODIzIDE1LjkwMzI1NjksMzAuNzc5NTM3MiAxNS45MDMyNTY5LDMwLjUwMzcyODIgTDE1LjkwMzI1NjksMjMuOTg3MjM5NiBMMjUuOTkxNzA1NywyMy45ODcyMzk2IFogTTI3Ljk5Mzc3OTMsMjMuOTg3MjM5NiBMMzEuOTk3OTI2NCwyMy45ODcyMzk2IEwzMS45OTc5MjY0LDIyLjk4NzkzMTQgTDI3Ljk5Mzc3OTMsMjIuOTg3OTMxNCBMMjcuOTkzNzc5MywyMy45ODcyMzk2IFogTTI4Ljk5NDgxNjEsMTkuMDI2NjczOCBMMzEuOTk3OTI2NCwxOS4wMjY2NzM4IEwzMS45OTc5MjY0LDE4LjAyNzM2NTcgTDI4Ljk5NDgxNjEsMTguMDI3MzY1NyBMMjguOTk0ODE2MSwxOS4wMjY2NzM4IFogTTI4Ljk3ODc5OTUsMTAuODY2MzIzMyBMMjkuODA2NjU2OSwxMS44NDg2NDMyIEwzMi40MjQzNjgxLDE0Ljk1MTQ5NTEgTDI4Ljk3ODc5OTUsMTQuOTUxNDk1MSBMMjguOTc4Nzk5NSwxMC44NjYzMjMzIFogTTMzLjk5MTk5MTcsMTUuNDA3MTc5NiBDMzMuOTg5OTg5NiwxNS4zODkxOTIxIDMzLjk4Njk4NjUsMTUuMzc0MjAyNSAzMy45ODM5ODM0LDE1LjM1NzIxNDIgQzMzLjk2Njk2NTgsMTUuMjc0MjcxNyAzMy45Mzc5MzU3LDE1LjE5NDMyNyAzMy44ODI4Nzg3LDE1LjEyOTM3MiBMMjguODYwNjc3MSw5LjE3NTQ5Mzg5IEMyOC44MDE2MTYsOS4xMDQ1NDMwMSAyOC43MjE1MzMsOS4wNjA1NzM0NSAyOC42MzU0NDM5LDkuMDMyNTkyODIgQzI4LjYxMDQxNzksOS4wMjM1OTkwNSAyOC41ODgzOTUxLDkuMDIwNjAxMTIgMjguNTYzMzY5Miw5LjAxNjYwMzg5IEMyOC41MzQzMzkxLDkuMDExNjA3MzUgMjguNTA4MzEyMiw4Ljk5NzYxNzAzIDI4LjQ3ODI4MTEsOC45OTc2MTcwMyBMMjAuNDQzOTU5OCw4Ljk5NzYxNzAzIEMyMC4xNjc2NzM3LDguOTk3NjE3MDMgMTkuOTQzNDQxNCw5LjIyMTQ2MjA2IDE5Ljk0MzQ0MTQsOS40OTcyNzExMiBMMTkuOTQzNDQxNCwyMS45Njc2Mzc4IEwyMC45NDQ0NzgyLDIxLjk2NzYzNzggTDIwLjk0NDQ3ODIsOS45OTY5MjUyMSBMMjcuOTc3NzYyNyw5Ljk5NjkyNTIxIEwyNy45Nzc3NjI3LDE1LjQ1MTE0OTIgQzI3Ljk3Nzc2MjcsMTUuNzI2OTU4MyAyOC4yMDA5OTM5LDE1Ljk1MDgwMzMgMjguNDc4MjgxMSwxNS45NTA4MDMzIEwzMi45OTg5NjMyLDE1Ljk1MDgwMzMgTDMyLjk5ODk2MzIsMzAuMDA0MDc0MSBMMjAuOTQ0NDc4MiwzMC4wMDQwNzQxIEwyMC45NDQ0NzgyLDI0Ljk2NTU2MjMgTDE5Ljk0MzQ0MTQsMjQuOTY1NTYyMyBMMTkuOTQzNDQxNCwzMC41MDM3MjgyIEMxOS45NDM0NDE0LDMwLjc3OTUzNzIgMjAuMTY3NjczNywzMS4wMDMzODIzIDIwLjQ0Mzk1OTgsMzEuMDAzMzgyMyBMMzMuNDk5NDgxNiwzMS4wMDMzODIzIEMzMy43NzY3Njg4LDMxLjAwMzM4MjMgMzQsMzAuNzc5NTM3MiAzNCwzMC41MDM3MjgyIEwzNCwxNS40NTExNDkyIEMzNCwxNS40MzYxNTk2IDMzLjk5Mzk5MzgsMTUuNDIyMTY5MyAzMy45OTE5OTE3LDE1LjQwNzE3OTYgTDMzLjk5MTk5MTcsMTUuNDA3MTc5NiBaIiBpZD0iQVdTLUNvc3QtYW5kLVVzYWdlLVJlcG9ydF9JY29uXzMyX1NxdWlkIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Cost & Usage Report", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "70c15791-e4c8-442c-a7b9-de0967e66f3b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "9", + zIndex: "9", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "S3 bucket", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(122,161,22)", + backgroundColor: "rgb(122,161,22)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(146,193,26)", + borderColor: "rgb(146,193,26)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "S3 bucket", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a82b6183-e300-4f95-8afb-b0ca71354d95": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "28", + zIndex: "28", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "OpenSearch", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(140,79,255)", + backgroundColor: "rgb(140,79,255)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(168,94,255)", + borderColor: "rgb(168,94,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tT3BlblNlYXJjaC1TZXJ2aWNlXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yMywyNiBDMjAuNzk0LDI2IDE5LDI0LjIwNiAxOSwyMiBDMTksMTkuNzk0IDIwLjc5NCwxOCAyMywxOCBDMjUuMjA2LDE4IDI3LDE5Ljc5NCAyNywyMiBDMjcsMjQuMjA2IDI1LjIwNiwyNiAyMywyNiBMMjMsMjYgWiBNMjMsMTcgQzIwLjI0MywxNyAxOCwxOS4yNDMgMTgsMjIgQzE4LDI0Ljc1NyAyMC4yNDMsMjcgMjMsMjcgQzI1Ljc1NywyNyAyOCwyNC43NTcgMjgsMjIgQzI4LDE5LjI0MyAyNS43NTcsMTcgMjMsMTcgTDIzLDE3IFogTTMyLjI4NCwzMC4zMDggQzMxLjk3NCwzMC42NTIgMzEuNDM4LDMwLjY4IDMxLjA5MywzMC4zNzEgTDI3LjYyNCwyNy4yNDEgQzI4LjA0NiwyNi44NjkgMjguNDI0LDI2LjQ0OSAyOC43NDYsMjUuOTg2IEwzMi4yMjEsMjkuMTE2IEMzMi41NjUsMjkuNDI4IDMyLjU5NCwyOS45NjMgMzIuMjg0LDMwLjMwOCBMMzIuMjg0LDMwLjMwOCBaIE0xNywyMiBDMTcsMTguNjkxIDE5LjY5MSwxNiAyMywxNiBDMjYuMzA5LDE2IDI5LDE4LjY5MSAyOSwyMiBDMjksMjUuMzA5IDI2LjMwOSwyOCAyMywyOCBDMTkuNjkxLDI4IDE3LDI1LjMwOSAxNywyMiBMMTcsMjIgWiBNMjkuMjY0LDI1LjEwNiBDMjkuNzMsMjQuMTY4IDMwLDIzLjExNiAzMCwyMiBDMzAsMTguMTQgMjYuODU5LDE1IDIzLDE1IEMxOS4xNDEsMTUgMTYsMTguMTQgMTYsMjIgQzE2LDI1Ljg2IDE5LjE0MSwyOSAyMywyOSBDMjQuNDA4LDI5IDI1LjcxOCwyOC41NzggMjYuODE3LDI3Ljg2IEwzMC40MjQsMzEuMTE0IEMzMC43NzUsMzEuNDMgMzEuMjE2LDMxLjU4NSAzMS42NTYsMzEuNTg1IEMzMi4xNiwzMS41ODUgMzIuNjYzLDMxLjM4IDMzLjAyNywzMC45NzcgQzMzLjcwNSwzMC4yMjMgMzMuNjQ0LDI5LjA1NSAzMi44OTIsMjguMzc0IEwyOS4yNjQsMjUuMTA2IFogTTM0LDkuNSBMMzQsMjYgTDMzLDI2IEwzMywxMCBMMjksMTAgTDI5LDE1IEwyOCwxNSBMMjgsOS41IEMyOCw5LjIyNCAyOC4yMjQsOSAyOC41LDkgTDMzLjUsOSBDMzMuNzc2LDkgMzQsOS4yMjQgMzQsOS41IEwzNCw5LjUgWiBNMjYsMzIgTDI3LDMyIEwyNywzMy41IEMyNywzMy43NzYgMjYuNzc2LDM0IDI2LjUsMzQgTDIxLjUsMzQgQzIxLjIyNCwzNCAyMSwzMy43NzYgMjEsMzMuNSBMMjEsMzEgTDIyLDMxIEwyMiwzMyBMMjYsMzMgTDI2LDMyIFogTTIyLDEzIEwyMSwxMyBMMjEsNi41IEMyMSw2LjIyNCAyMS4yMjQsNiAyMS41LDYgTDI2LjUsNiBDMjYuNzc2LDYgMjcsNi4yMjQgMjcsNi41IEwyNywxMyBMMjYsMTMgTDI2LDcgTDIyLDcgTDIyLDEzIFogTTE5LDMwIEwyMCwzMCBMMjAsMzMuNSBDMjAsMzMuNzc2IDE5Ljc3NiwzNCAxOS41LDM0IEwxNC41LDM0IEMxNC4yMjQsMzQgMTQsMzMuNzc2IDE0LDMzLjUgTDE0LDI2IEwxNSwyNiBMMTUsMzMgTDE5LDMzIEwxOSwzMCBaIE0xNSwxNiBMMTQsMTYgTDE0LDEwLjUgQzE0LDEwLjIyNCAxNC4yMjQsMTAgMTQuNSwxMCBMMTkuNSwxMCBDMTkuNzc2LDEwIDIwLDEwLjIyNCAyMCwxMC41IEwyMCwxMyBMMTksMTMgTDE5LDExIEwxNSwxMSBMMTUsMTYgWiBNOCwzMyBMMTIsMzMgTDEyLDE2IEw4LDE2IEw4LDMzIFogTTEyLjUsMTUgTDcuNSwxNSBDNy4yMjQsMTUgNywxNS4yMjQgNywxNS41IEw3LDMzLjUgQzcsMzMuNzc2IDcuMjI0LDM0IDcuNSwzNCBMMTIuNSwzNCBDMTIuNzc2LDM0IDEzLDMzLjc3NiAxMywzMy41IEwxMywxNS41IEMxMywxNS4yMjQgMTIuNzc2LDE1IDEyLjUsMTUgTDEyLjUsMTUgWiIgaWQ9IkFtYXpvbi1PcGVuU2VhcmNoLVNlcnZpY2VfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tT3BlblNlYXJjaC1TZXJ2aWNlXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0yMywyNiBDMjAuNzk0LDI2IDE5LDI0LjIwNiAxOSwyMiBDMTksMTkuNzk0IDIwLjc5NCwxOCAyMywxOCBDMjUuMjA2LDE4IDI3LDE5Ljc5NCAyNywyMiBDMjcsMjQuMjA2IDI1LjIwNiwyNiAyMywyNiBMMjMsMjYgWiBNMjMsMTcgQzIwLjI0MywxNyAxOCwxOS4yNDMgMTgsMjIgQzE4LDI0Ljc1NyAyMC4yNDMsMjcgMjMsMjcgQzI1Ljc1NywyNyAyOCwyNC43NTcgMjgsMjIgQzI4LDE5LjI0MyAyNS43NTcsMTcgMjMsMTcgTDIzLDE3IFogTTMyLjI4NCwzMC4zMDggQzMxLjk3NCwzMC42NTIgMzEuNDM4LDMwLjY4IDMxLjA5MywzMC4zNzEgTDI3LjYyNCwyNy4yNDEgQzI4LjA0NiwyNi44NjkgMjguNDI0LDI2LjQ0OSAyOC43NDYsMjUuOTg2IEwzMi4yMjEsMjkuMTE2IEMzMi41NjUsMjkuNDI4IDMyLjU5NCwyOS45NjMgMzIuMjg0LDMwLjMwOCBMMzIuMjg0LDMwLjMwOCBaIE0xNywyMiBDMTcsMTguNjkxIDE5LjY5MSwxNiAyMywxNiBDMjYuMzA5LDE2IDI5LDE4LjY5MSAyOSwyMiBDMjksMjUuMzA5IDI2LjMwOSwyOCAyMywyOCBDMTkuNjkxLDI4IDE3LDI1LjMwOSAxNywyMiBMMTcsMjIgWiBNMjkuMjY0LDI1LjEwNiBDMjkuNzMsMjQuMTY4IDMwLDIzLjExNiAzMCwyMiBDMzAsMTguMTQgMjYuODU5LDE1IDIzLDE1IEMxOS4xNDEsMTUgMTYsMTguMTQgMTYsMjIgQzE2LDI1Ljg2IDE5LjE0MSwyOSAyMywyOSBDMjQuNDA4LDI5IDI1LjcxOCwyOC41NzggMjYuODE3LDI3Ljg2IEwzMC40MjQsMzEuMTE0IEMzMC43NzUsMzEuNDMgMzEuMjE2LDMxLjU4NSAzMS42NTYsMzEuNTg1IEMzMi4xNiwzMS41ODUgMzIuNjYzLDMxLjM4IDMzLjAyNywzMC45NzcgQzMzLjcwNSwzMC4yMjMgMzMuNjQ0LDI5LjA1NSAzMi44OTIsMjguMzc0IEwyOS4yNjQsMjUuMTA2IFogTTM0LDkuNSBMMzQsMjYgTDMzLDI2IEwzMywxMCBMMjksMTAgTDI5LDE1IEwyOCwxNSBMMjgsOS41IEMyOCw5LjIyNCAyOC4yMjQsOSAyOC41LDkgTDMzLjUsOSBDMzMuNzc2LDkgMzQsOS4yMjQgMzQsOS41IEwzNCw5LjUgWiBNMjYsMzIgTDI3LDMyIEwyNywzMy41IEMyNywzMy43NzYgMjYuNzc2LDM0IDI2LjUsMzQgTDIxLjUsMzQgQzIxLjIyNCwzNCAyMSwzMy43NzYgMjEsMzMuNSBMMjEsMzEgTDIyLDMxIEwyMiwzMyBMMjYsMzMgTDI2LDMyIFogTTIyLDEzIEwyMSwxMyBMMjEsNi41IEMyMSw2LjIyNCAyMS4yMjQsNiAyMS41LDYgTDI2LjUsNiBDMjYuNzc2LDYgMjcsNi4yMjQgMjcsNi41IEwyNywxMyBMMjYsMTMgTDI2LDcgTDIyLDcgTDIyLDEzIFogTTE5LDMwIEwyMCwzMCBMMjAsMzMuNSBDMjAsMzMuNzc2IDE5Ljc3NiwzNCAxOS41LDM0IEwxNC41LDM0IEMxNC4yMjQsMzQgMTQsMzMuNzc2IDE0LDMzLjUgTDE0LDI2IEwxNSwyNiBMMTUsMzMgTDE5LDMzIEwxOSwzMCBaIE0xNSwxNiBMMTQsMTYgTDE0LDEwLjUgQzE0LDEwLjIyNCAxNC4yMjQsMTAgMTQuNSwxMCBMMTkuNSwxMCBDMTkuNzc2LDEwIDIwLDEwLjIyNCAyMCwxMC41IEwyMCwxMyBMMTksMTMgTDE5LDExIEwxNSwxMSBMMTUsMTYgWiBNOCwzMyBMMTIsMzMgTDEyLDE2IEw4LDE2IEw4LDMzIFogTTEyLjUsMTUgTDcuNSwxNSBDNy4yMjQsMTUgNywxNS4yMjQgNywxNS41IEw3LDMzLjUgQzcsMzMuNzc2IDcuMjI0LDM0IDcuNSwzNCBMMTIuNSwzNCBDMTIuNzc2LDM0IDEzLDMzLjc3NiAxMywzMy41IEwxMywxNS41IEMxMywxNS4yMjQgMTIuNzc2LDE1IDEyLjUsMTUgTDEyLjUsMTUgWiIgaWQ9IkFtYXpvbi1PcGVuU2VhcmNoLVNlcnZpY2VfSWNvbl8zMl9TcXVpZCIgZmlsbD0iI0ZGRkZGRiI+PC9wYXRoPiA8L2c+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "OpenSearch", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6acc7ded-abfe-4425-828f-01673da430bd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "17", + zIndex: "17", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Lambda Cost Function", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(237,113,0)", + backgroundColor: "rgb(237,113,0)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(255,135,0)", + borderColor: "rgb(255,135,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BV1MtTGFtYmRhXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xNC4zODYzNzYyLDMzIEw4LjI2OTU3MzIzLDMzIEwxNS4wMzI2MjgsMTguNTc0IEwxOC4wOTY5MjIzLDI1LjAxNCBMMTQuMzg2Mzc2MiwzMyBaIE0xNS40NzA2NjQ5LDE3LjIwMiBDMTUuMzg5MTQ2OCwxNy4wMyAxNS4yMTcyNzE0LDE2LjkyIDE1LjAyODY5OTQsMTYuOTIgTDE1LjAyNjczNTEsMTYuOTIgQzE0LjgzOTE0NTMsMTYuOTIxIDE0LjY2NzI2OTgsMTcuMDMyIDE0LjU4NTc1MTcsMTcuMjA1IEw3LjA0Nzc4NDA4LDMzLjI4NSBDNi45NzUxMDUzLDMzLjQzOSA2Ljk4NTkwODksMzMuNjIyIDcuMDc2MjY2MywzMy43NjcgQzcuMTY1NjQxNTUsMzMuOTEyIDcuMzIyNzg0ODUsMzQgNy40OTA3MzE3NSwzNCBMMTQuNjk2NzM0MiwzNCBDMTQuODg3MjcwNCwzNCAxNS4wNjAxMjgxLDMzLjg4OSAxNS4xNDE2NDYyLDMzLjcxNCBMMTkuMDg1OTQzLDI1LjIyNSBDMTkuMTQ5NzgyNCwyNS4wODggMTkuMTQ4ODAwMywyNC45MjkgMTkuMDgzOTc4NywyNC43OTMgTDE1LjQ3MDY2NDksMTcuMjAyIFogTTMyLjAxNzg1NDQsMzMgTDI2LjEzNTc4NDIsMzMgTDE2LjY2NjkxODMsMTIuMjg5IEMxNi41ODYzODI0LDEyLjExMyAxNi40MTI1NDI2LDEyIDE2LjIyMjAwNjMsMTIgTDEyLjM3MDAzMTIsMTIgTDEyLjM3NDk0MTksNyBMMTkuOTIzNzEzMiw3IEwyOS4zNDgzODI2LDI3LjcxIEMyOS40Mjg5MTg1LDI3Ljg4NyAyOS42MDM3NDA0LDI4IDI5Ljc5NDI3NjcsMjggTDMyLjAxNzg1NDQsMjggTDMyLjAxNzg1NDQsMzMgWiBNMzIuNTA4OTI3MiwyNyBMMzAuMTA4NTYzMywyNyBMMjAuNjgyOTExOCw2LjI5IEMyMC42MDIzNzU4LDYuMTEzIDIwLjQyNzU1MzksNiAyMC4yMzcwMTc2LDYgTDExLjg4Mzg2OTEsNiBDMTEuNjEyNzk2OSw2IDExLjM5Mjc5NjMsNi4yMjQgMTEuMzkyNzk2Myw2LjUgTDExLjM4NjkwMzQsMTIuNSBDMTEuMzg2OTAzNCwxMi42MzIgMTEuNDM4OTU3MiwxMi43NTkgMTEuNTMxMjc4OCwxMi44NTQgQzExLjYyMzYwMDUsMTIuOTQ3IDExLjc0NzM1MDksMTMgMTEuODc3OTc2MiwxMyBMMTUuOTA5Njg0LDEzIEwyNS4zNzc1Njc4LDMzLjcxMSBDMjUuNDU4MTAzOCwzMy44ODcgMjUuNjMxOTQzNSwzNCAyNS44MjM0NjE5LDM0IEwzMi41MDg5MjcyLDM0IEMzMi43ODA5ODE1LDM0IDMzLDMzLjc3NiAzMywzMy41IEwzMywyNy41IEMzMywyNy4yMjQgMzIuNzgwOTgxNSwyNyAzMi41MDg5MjcyLDI3IEwzMi41MDg5MjcyLDI3IFoiIGlkPSJBV1MtTGFtYmRhX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Lambda Cost Function", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "43a60c7e-4e33-4c3a-a065-651ea9fdf8df": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "11", + zIndex: "11", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Result Bucket", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(122,161,22)", + backgroundColor: "rgb(122,161,22)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(146,193,26)", + borderColor: "rgb(146,193,26)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIGlkPSJJY29uLUFyY2hpdGVjdHVyZS8zMi9BcmNoX0FtYXpvbi1TMy1vbi1PdXRwb3N0c18zMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICA8ZyBpZD0iSWNvbi1TZXJ2aWNlLzMyL0FtYXpvbi1TMy1Pbi1PdXRwb3N0c18zMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDYuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+IDxwYXRoIGQ9Ik0yNi44MzEsMTkuOCBDMjYuNzE2LDE5LjY4MiAyNi40OTIsMTkuNDk5IDI2LjA5NiwxOS4yNDkgTDI2LjAzNywxOS42ODEgQzI2LjQzMSwxOS43NzMgMjYuNjgsMTkuNzk4IDI2LjgzMSwxOS44IEwyNi44MzEsMTkuOCBaIE0yNS45NDQsMTIuODE2IEMyNS44OTcsMTIuMjI1IDIzLjEyNywxMC44NjkgMTguNzgxLDEwLjg2OSBDMTQuMzk3LDEwLjg2OSAxMS42MTcsMTIuMjQ5IDExLjYxNywxMi44MzEgTDExLjYzNCwxMi45MjIgQzExLjgsMTMuNTQxIDE0LjY3NiwxNC41MjYgMTguNzgxLDE0LjUyNiBDMjIuODg3LDE0LjUyNiAyNS43NjMsMTMuNTQxIDI1Ljk0LDEyLjg2MyBMMjUuOTQ0LDEyLjgxNiBaIE0yNS43NTgsMTQuMjY1IEMyNC4yMjMsMTUuMTAyIDIxLjQzOCwxNS41MjYgMTguNzgxLDE1LjUyNiBDMTYuMTIzLDE1LjUyNiAxMy4zMzksMTUuMTAyIDExLjgwOCwxNC4yODYgTDEyLjUzNiwxOS42OTkgQzEzLjAzNywxOS44NzEgMTMuNTA5LDIwLjE2IDEzLjkyMSwyMC41NjYgQzE0LjE3NiwyMC44MTkgMTQuMzk1LDIxLjExMiAxNC41NzcsMjEuNDQzIEMxNC45NjQsMjEuMjM1IDE1LjQxNiwyMS4xODEgMTUuODU1LDIxLjMxIEMxNi41MzYsMjEuNTExIDE3LjAwNiwyMi4wOSAxNy4xNTYsMjIuODg2IEMxNy40NTcsMjIuOTc4IDE3Ljc2MSwyMy4xMTUgMTguMDI2LDIzLjI4NCBDMTguODU5LDIzLjgxMSAxOS4yODEsMjQuNDk3IDE5LjI4MSwyNS4zMjMgQzE5LjI4MSwyNS45OTcgMTkuMDk4LDI2LjU1NCAxOC43NTYsMjcgTDE4Ljc4MSwyNyBDMjAuMDU3LDI3IDIxLjMzMiwyNi44NjcgMjIuMzcyLDI2LjYyNyBDMjIuNzcyLDI2LjUzNSAyMy4xMjgsMjYuNDI4IDIzLjQyOCwyNi4zMSBDMjQuMDE1LDI2LjA3NyAyNC4xOTEsMjUuODcxIDI0LjIwNywyNS44MTcgTDI0LjkzMiwyMC40MTkgQzIyLjQ2MiwxOS43MjYgMjAuNjczLDE5LjE3NyAxOS41OTcsMTguNzgxIEMxOS40MjksMTguOTEgMTkuMjI4LDE5IDE5LDE5IEMxOC40NDgsMTkgMTgsMTguNTUxIDE4LDE4IEMxOCwxNy40NDggMTguNDQ4LDE3IDE5LDE3IEMxOS41LDE3IDE5Ljg5NiwxNy4zNzQgMTkuOTcxLDE3Ljg1MyBDMjAuOTkxLDE4LjIyNyAyMi43MjIsMTguNzU4IDI1LjA2NiwxOS40MTkgTDI1Ljc1OCwxNC4yNjUgWiBNMTguMjgxLDI1LjMyMyBDMTguMjgxLDI1IDE4LjE5MSwyNC41NzIgMTcuNDkxLDI0LjEyOSBDMTcuMjI2LDIzLjk2IDE2Ljg5NywyMy44MzEgMTYuNjEzLDIzLjc4MyBDMTYuMzQyLDIzLjczNyAxNi4xNTksMjMuNDc5IDE2LjIwNCwyMy4yMDggQzE2LjE2NSwyMi43NiAxNS45MywyMi4zNzUgMTUuNTcyLDIyLjI2OSBDMTUuMjgzLDIyLjE4NCAxNC45OCwyMi4yOTYgMTQuNzkyLDIyLjU0OSBDMTQuNjgyLDIyLjY5NiAxNC40OTgsMjIuNzY5IDE0LjMxNywyMi43NDQgQzE0LjEzNSwyMi43MTYgMTMuOTgzLDIyLjU5MSAxMy45MjEsMjIuNDE4IEMxMy43NTcsMjEuOTU5IDEzLjUxOSwyMS41NzYgMTMuMjE4LDIxLjI3OCBDMTIuOTQ1LDIxLjAwOCAxMi4zMiwyMC41MSAxMS40MzUsMjAuNTEgQzExLjEyNCwyMC41MSAxMC43ODEsMjAuNTcxIDEwLjQxLDIwLjcyNiBDOS42MDcsMjEuMDYxIDguOTU0LDIyLjA2NCA4Ljk1NCwyMi45NjIgQzguOTU0LDIzLjA2NiA4Ljk2MSwyMy4xNjcgOC45NzMsMjMuMjY3IEM5LjAwNCwyMy41MTcgOC44NDMsMjMuNzUxIDguNTk5LDIzLjgxMyBDOC4wMzUsMjMuOTU0IDcuMzYzLDI0LjM0IDcuMzYzLDI1LjM3MiBDNy4zNjMsMjYuMjE3IDcuODM1LDI2LjY3NSA4LjIyOSwyNi45MTEgQzguMzI4LDI2Ljk3IDguNDQzLDI3IDguNTcyLDI3IEwxNi42NDUsMjcuMDA4IEMxNi45MTksMjcuMDA3IDE4LjI4MSwyNi45MiAxOC4yODEsMjUuMzIzIEwxOC4yODEsMjUuMzIzIFogTTcuOTU0LDIyLjk3MSBMNy45NTQsMjIuOTYyIEM3Ljk1NCwyMS42NTQgOC44NDUsMjAuMjk2IDEwLjAyNSwxOS44MDMgQzEwLjUxNiwxOS41OTkgMTEuMDE1LDE5LjUwOSAxMS41MDQsMTkuNTE5IEwxMC42NDQsMTMuMTMgTDEwLjY2LDEzLjEyOCBDMTAuNjU5LDEzLjEyMyAxMC42NTYsMTMuMTE5IDEwLjY1NSwxMy4xMTUgTDEwLjYyMiwxMi44OTkgQzEwLjYyLDEyLjAyNSAxMS41NzcsMTEuMyAxMywxMC43NzcgTDEzLDEuNzgxIEMxMywxLjM1IDEyLjY0OSwxIDEyLjIxOSwxIEwxLjc4MSwxIEMxLjM1MSwxIDEsMS4zNSAxLDEuNzgxIEwxLDI0LjIxOCBDMSwyNC42NDkgMS4zNTEsMjUgMS43ODEsMjUgTDYuNDE0LDI1IEM2LjUzMywyNC4wNiA3LjA2OCwyMy4zMjYgNy45NTQsMjIuOTcxIEw3Ljk1NCwyMi45NzEgWiBNMTYuNjQ0LDI4IEwxNi42NDEsMjggTDguNTcxLDI3Ljk5MSBDOC4yNjUsMjcuOTkxIDcuOTcsMjcuOTIgNy43MTgsMjcuNzcgQzcuMjk2LDI3LjUxOCA2LjY0MiwyNi45NzQgNi40MzUsMjYgTDQsMjYgTDQsMjggTDMsMjggTDMsMjYgTDEuNzgxLDI2IEMwLjc5OSwyNiAtMS43NzYzNTY4NGUtMTUsMjUuMiAtMS43NzYzNTY4NGUtMTUsMjQuMjE4IEwtMS43NzYzNTY4NGUtMTUsMS43ODEgQy0xLjc3NjM1Njg0ZS0xNSwwLjc5OSAwLjc5OSwxLjc3NjM1Njg0ZS0xNSAxLjc4MSwxLjc3NjM1Njg0ZS0xNSBMMTIuMjE5LDEuNzc2MzU2ODRlLTE1IEMxMy4yMDEsMS43NzYzNTY4NGUtMTUgMTQsMC43OTkgMTQsMS43ODEgTDE0LDEwLjQ2MiBDMTUuNDIxLDEwLjA4MiAxNy4xMjQsOS44NjkgMTguNzgxLDkuODY5IEMyMi43MjQsOS44NjkgMjYuOTQ1LDExLjA1OSAyNi45NDUsMTIuODMxIEMyNi45NDUsMTIuODU0IDI2Ljk0MywxMi44NzYgMjYuOTQsMTIuODk5IEwyNi45MTksMTMuMDU2IEMyNi45MTMsMTMuMDggMjYuODk4LDEzLjEwMyAyNi44OTEsMTMuMTI2IEwyNi45MTksMTMuMTMgTDI2LjI0LDE4LjE3IEMyNy4zMzIsMTguNzk4IDI3Ljg1MSwxOS4yODkgMjcuOTQyLDE5Ljc4MiBDMjcuOTg4LDIwLjAyOCAyNy45MjUsMjAuMjY4IDI3Ljc2NSwyMC40NTkgQzI3LjU3NCwyMC42ODYgMjcuMjgsMjAuOCAyNi44NDcsMjAuOCBDMjYuNTkxLDIwLjggMjYuMjY2LDIwLjc0NSAyNS45MDQsMjAuNjY3IEwyNS4yMDEsMjUuODkzIEMyNS4yMDYsMjYuMzk0IDI0LjczMSwyNi44NjkgMjMuNzk1LDI3LjIzOSBDMjMuNDQ5LDI3LjM3NiAyMy4wNDYsMjcuNDk4IDIyLjU5NywyNy42MDIgQzIxLjQ4NSwyNy44NTggMjAuMTMxLDI3Ljk5MSAxOC43ODEsMjcuOTkxIEwxNi42NDQsMjggWiBNNCw5IEwxMSw5IEwxMSw4IEw0LDggTDQsOSBaIE00LDEyIEw5LDEyIEw5LDExIEw0LDExIEw0LDEyIFogTTQsNiBMMTEsNiBMMTEsNSBMNCw1IEw0LDYgWiIgaWQ9IkZpbGwtNiI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Result Bucket", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ad1c7db7-68ba-4d50-b2de-c33036fc9368": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "15", + zIndex: "15", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "Amazon Anthena", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(140,79,255)", + backgroundColor: "rgb(140,79,255)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(168,94,255)", + borderColor: "rgb(168,94,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tQXRoZW5hXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xOC43MjYwMjA1LDE0LjI4NTM5ODggQzIwLjUyNjY3MTEsMTQuMjg1Mzk4OCAyMS43MDgxMjU2LDE0LjU2OTY1NzcgMjIuMTQ1MzI0OCwxNC43ODQwOTg2IEMyMS43MDgxMjU2LDE0Ljk5ODUzOTUgMjAuNTI2NjcxMSwxNS4yODI3OTg0IDE4LjcyNjAyMDUsMTUuMjgyNzk4NCBDMTYuOTI1MzcsMTUuMjgyNzk4NCAxNS43NDM5MTU1LDE0Ljk5ODUzOTUgMTUuMzA2NzE2MywxNC43ODQwOTg2IEMxNS43NDM5MTU1LDE0LjU2OTY1NzcgMTYuOTI1MzcsMTQuMjg1Mzk4OCAxOC43MjYwMjA1LDE0LjI4NTM5ODggTDE4LjcyNjAyMDUsMTQuMjg1Mzk4OCBaIE0xOC43NDAyNTQ5LDE3LjQ4MzA2MiBDMTguNjUxNzk4NCwxNy40NTYxMzIyIDE4LjU3NTU0MjcsMTcuNDA0MjY3NCAxOC41NzU1NDI3LDE3LjMwMTUzNTMgQzE4LjU3NTU0MjcsMTcuMTYxODk5MyAxOC42OTA0MzQ2LDE3LjA0OTE5MzIgMTguODMxNzYxNywxNy4wNDkxOTMyIEMxOC44NzQ0NjQ5LDE3LjA0OTE5MzIgMTguOTAzOTUwNCwxNy4wNzUxMjU2IDE4LjkzODUxOTcsMTcuMDkyMDgxNCBMMTguNzQwMjU0OSwxNy40ODMwNjIgWiBNMjEuNjc4NjQwMSwyMS42MzkyMjYzIEMyMS42NDEwMjA2LDIxLjY2ODE1MDkgMjEuNTU0NTk3NSwyMS43MjYwMDAxIDIxLjM3NTY1MDksMjEuNzk0ODIwNiBDMjEuMjEzOTg4OSwyMS44NTc2NTY4IDIxLjAyMjg0MTMsMjEuOTEzNTExMiAyMC44MTAzNDIyLDIxLjk2MTM4NjQgQzIwLjIzODkzMywyMi4wOTEwNDgzIDE5LjUzNjM2NDEsMjIuMTYyODYxMSAxOC44MzE3NjE3LDIyLjE2Mjg2MTEgQzE3LjI5MDM4MDUsMjIuMTYyODYxMSAxNi4yMTU2ODM5LDIxLjg0MDcwMSAxNS45ODU5MDAxLDIxLjY0MTIyMTEgTDE1LjI5NzU2NTYsMTUuODQ3MzI2NiBDMTYuNDg1MTIwNiwxNi4yNDgyODEzIDE4LjIzNDkzNCwxNi4yODAxOTgxIDE4LjcyNjAyMDUsMTYuMjgwMTk4MSBDMTkuMjIyMTkwOCwxNi4yODAxOTgxIDIxLjAwMTQ4OTcsMTYuMjQ3MjgzOSAyMi4xOTAwNjE0LDE1LjgzNTM1NzggTDIxLjk4NzcyOTcsMTguMTMzMzY2NiBDMjEuMjUyNjI1MSwxNy44NTcwODY5IDIwLjM3OTI0MzUsMTcuNDc3MDc3NiAxOS41NDc1NDgzLDE3LjA4NTA5OTYgQzE5LjQ1MDk1NzgsMTYuNzgwODkyNyAxOS4xNzIzNzA0LDE2LjU1NTQ4MDQgMTguODMxNzYxNywxNi41NTU0ODA0IEMxOC40MTI4NjM5LDE2LjU1NTQ4MDQgMTguMDcyMjU1MywxNi44OTA2MDY2IDE4LjA3MjI1NTMsMTcuMzAxNTM1MyBDMTguMDcyMjU1MywxNy43MTI0NjM5IDE4LjQxMjg2MzksMTguMDQ2NTkyOCAxOC44MzE3NjE3LDE4LjA0NjU5MjggQzE4LjkzMjQxOTIsMTguMDQ2NTkyOCAxOS4wMjY5NzYyLDE4LjAyNTY0NzQgMTkuMTE0NDE2MSwxNy45OTA3Mzg0IEMyMC4yOTE4MDM2LDE4LjU1MTI3NyAyMS4yMDQ4MzgyLDE4LjkzNTI3NTkgMjEuODk1MjA2MiwxOS4xNzY2NDY2IEwyMS42Nzg2NDAxLDIxLjYzOTIyNjMgWiBNMTQuMTUzNzMwNiwxNC44NDE5NDc4IEwxNC45NzYyNzUxLDIxLjczMjk4MTkgQzE0Ljk3NjI3NTEsMjMuMTQ0MzAyNCAxOC42NzQxNjY3LDIzLjE2MDI2MDcgMTguODMxNzYxNywyMy4xNjAyNjA3IEMxOS42MTE2MDMsMjMuMTYwMjYwNyAyMC4zOTU1MTEzLDIzLjA3OTQ3MTQgMjEuMDM4MDkyNCwyMi45MzM4NTEgQzIxLjMwNjUxMjQsMjIuODczMDA5NyAyMS41NDU0NDY4LDIyLjgwMTE5NjkgMjEuNzQ4Nzk1MywyMi43MjI0MDIzIEMyMi4zNzIwNTgzLDIyLjQ4MTAzMTYgMjIuNjg3MjQ4NCwyMi4xNDc5MDAxIDIyLjY4NjIzMTYsMjEuNzc1ODcwMSBMMjIuODg5NTgwMSwxOS40NzA4Nzk1IEMyMy4xODg1MDIzLDE5LjUzODcwMjcgMjMuNDI0Mzg2NSwxOS41Njg2MjQ3IDIzLjYwNTM2NjcsMTkuNTY4NjI0NyBDMjQuMDgzMjM1NSwxOS41Njg2MjQ3IDI0LjIwOTMxMTYsMTkuMzgwMTE2MSAyNC4yOTU3MzQ3LDE5LjI1MDQ1NDIgTDI0LjM3MTk5MDMsMTguNzczNjk3MSBDMjQuMjQ5OTgxMiwxOC4yODE5NzkxIDIzLjM3MjUzMjcsMTcuNTg2NzkxNiAyMy4wNzQ2MjcyLDE3LjM3MDM1NTkgTDIzLjI5OTMyNzIsMTQuODI2OTg2OCBMMjMuMjk0MjQzNSwxNC44MjU5ODk0IEMyMy4yOTUyNjAzLDE0LjgxMjAyNTggMjMuMzAxMzYwNywxNC43OTkwNTk2IDIzLjMwMTM2MDcsMTQuNzg0MDk4NiBDMjMuMzAxMzYwNywxMy4zNTk4MTE5IDE5LjQ4OTU5NCwxMy4yODc5OTkxIDE4LjcyNjAyMDUsMTMuMjg3OTk5MSBDMTcuOTYyNDQ3MSwxMy4yODc5OTkxIDE0LjE1MDY4MDQsMTMuMzU5ODExOSAxNC4xNTA2ODA0LDE0Ljc4NDA5ODYgQzE0LjE1MDY4MDQsMTQuODA0MDQ2NiAxNC4xNTg4MTQzLDE0LjgyMTAwMjQgMTQuMTYwODQ3OCwxNC44NDA5NTA0IEwxNC4xNTM3MzA2LDE0Ljg0MTk0NzggWiBNMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEMyMy41MDk3OTI5LDkuMzk0MTUwOTYgMjcuMzg3NjQ3OSwxMy4xOTcyMzU4IDI3LjM4NzY0NzksMTcuODcyMDQ3OSBDMjcuMzg3NjQ3OSwyMi41NDY4NiAyMy41MDk3OTI5LDI2LjM0OTk0NDggMTguNzQ1MzM4NiwyNi4zNDk5NDQ4IEMxMy45Nzk4Njc3LDI2LjM0OTk0NDggMTAuMTAzMDI5NCwyMi41NDY4NiAxMC4xMDMwMjk0LDE3Ljg3MjA0NzkgQzEwLjEwMzAyOTQsMTMuMTk3MjM1OCAxMy45Nzk4Njc3LDkuMzk0MTUwOTYgMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEwxOC43NDUzMzg2LDkuMzk0MTUwOTYgWiBNNi4wMTY3NDIyNiwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIyLjI2NDU5NTkgTDEwLjE5MzUxOTUsMjIuMjY0NTk1OSBDMTEuODExMTU2NCwyNS4yODE3Mjk4IDE1LjAzNDIyOTQsMjcuMzQ3MzQ0NCAxOC43NDUzMzg2LDI3LjM0NzM0NDQgQzI0LjA3MTAzNDYsMjcuMzQ3MzQ0NCAyOC40MDQzOTAxLDIzLjA5NjQyNzIgMjguNDA0MzkwMSwxNy44NzIwNDc5IEMyOC40MDQzOTAxLDEyLjY0NzY2ODYgMjQuMDcxMDM0Niw4LjM5Njc1MTMzIDE4Ljc0NTMzODYsOC4zOTY3NTEzMyBDMTQuMzM1NzI3NSw4LjM5Njc1MTMzIDEwLjYxMzQzNCwxMS4zMTQxNDUzIDkuNDYyNDgxNzksMTUuMjgyNzk4NCBMNi4wMTY3NDIyNiwxNS4yODI3OTg0IEw2LjAxNjc0MjI2LDE2LjI4MDE5ODEgTDkuMjMzNzE0NzgsMTYuMjgwMTk4MSBDOS4xNDMyMjQ3MiwxNi43OTg4NDU5IDkuMDg2Mjg3MTUsMTcuMzI4NDY1MSA5LjA4NjI4NzE1LDE3Ljg3MjA0NzkgQzkuMDg2Mjg3MTUsMTguMDA3Njk0MiA5LjEwMDUyMTU0LDE4LjE0MDM0ODQgOS4xMDY2MjIsMTguMjc0OTk3MyBMNSwxOC4yNzQ5OTczIEw1LDE5LjI3MjM5NyBMOS4yMDMyMTI1MSwxOS4yNzIzOTcgQzkuMzA3OTM2OTYsMTkuOTY0NTkyMyA5LjQ4NzkwMDM0LDIwLjYzMTg1MjcgOS43MzgwMTg5NCwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIxLjI2NzE5NjIgWiBNMzMuNTAzMzUyNiwzMi41MzE4Mjc3IEMzMi44ODkyNDAyLDMzLjEzNTI1NDUgMzEuODIyNjc3NiwzMy4xNDAyNDE1IDMxLjIwNzU0ODUsMzIuNTM2ODE0NyBMMjUuOTU1MDU4LDI3LjM4NTI0NTYgQzI2LjgzNTU1NjgsMjYuNzQxOTIyOCAyNy42MjE0OTg2LDI1Ljk4Nzg4ODcgMjguMjk0NTgyLDI1LjEzOTEwMTYgTDMzLjUwOTQ1MywzMC4yODA2OTY4IEMzMy44MTU0OTI1LDMwLjU4MDkxNCAzMy45ODMyNTQ5LDMwLjk4MDg3MTMgMzMuOTgzMjU0OSwzMS40MDY3NjA5IEMzMy45ODIyMzgyLDMxLjgzMTY1MzIgMzMuODEyNDQyMiwzMi4yMzE2MTA0IDMzLjUwMzM1MjYsMzIuNTMxODI3NyBMMzMuNTAzMzUyNiwzMi41MzE4Mjc3IFogTTM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMjguODk1NDc2NiwyNC4zMTcyNDQzIEMzMC4xMjQ3MTgsMjIuNDU5MDg4OCAzMC44NDc2MjE4LDIwLjI0ODg1MTIgMzAuODQ3NjIxOCwxNy44NzIwNDc5IEMzMC44NDc2MjE4LDExLjMyNjExNDEgMjUuNDE4MjE4MSw2IDE4Ljc0NTMzODYsNiBDMTMuOTQ5MzY1NCw2IDkuNTk5NzQxOTksOC43ODE3NDc1OSA3LjY2NTg5ODIxLDEzLjA4NjUyNDQgTDguNTk1MjAwNjQsMTMuNDg5NDczOSBDMTAuMzY4Mzk5MSw5LjU0NTc1NTcxIDE0LjM1MTk5NTMsNi45OTczOTk2NCAxOC43NDUzMzg2LDYuOTk3Mzk5NjQgQzI0Ljg1Njk3NjQsNi45OTczOTk2NCAyOS44MzA4Nzk1LDExLjg3NTY4MTMgMjkuODMwODc5NSwxNy44NzIwNDc5IEMyOS44MzA4Nzk1LDIzLjg2ODQxNDUgMjQuODU2OTc2NCwyOC43NDc2OTM1IDE4Ljc0NTMzODYsMjguNzQ3NjkzNSBDMTUuMDEyODc3OCwyOC43NDc2OTM1IDExLjU1MjkwMzksMjYuOTIxNDU0OCA5LjQ5MDk1MDU3LDIzLjg2MzQyNzUgTDguNjQyOTg3NTMsMjQuNDEzOTkyMSBDMTAuODk0MDU0OSwyNy43NTIyODg3IDE0LjY3MDIzNTcsMjkuNzQ1MDkzMiAxOC43NDUzMzg2LDI5Ljc0NTA5MzIgQzIxLjA3Nzc0NTQsMjkuNzQ1MDkzMiAyMy4yNTA1MjM2LDI5LjA4MjgxOTggMjUuMTAwOTk0NSwyNy45NTY3NTU2IEwzMC40ODg3MTE4LDMzLjI0Mjk3MzcgQzMwLjk4NjkxNTUsMzMuNzMwNzAyMSAzMS42NDc3OTc5LDM0IDMyLjM0OTM1MDEsMzQgQzMzLjA1NTk4NiwzNCAzMy43MjA5MzU0LDMzLjcyODcwNzMgMzQuMjIxMTcyNiwzMy4yMzg5ODQxIEMzNC43MjE0MDk4LDMyLjc1MTI1NTcgMzQuOTk3OTYzNywzMi4xMDA5NTExIDM1LDMxLjQwNzc1ODMgQzM1LjAwMTAxMzksMzAuNzE1NTYzIDM0LjcyNjQ5MzUsMzAuMDY0MjYxIDM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMzQuMjI5MzA2NiwyOS41NzY1MzI2IFoiIGlkPSJBbWF6b24tQXRoZW5hX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiICB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICA8ZyBpZD0iSWNvbi1BcmNoaXRlY3R1cmUvMzIvQXJjaF9BbWF6b24tQXRoZW5hXzMyIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gIDxwYXRoIGQ9Ik0xOC43MjYwMjA1LDE0LjI4NTM5ODggQzIwLjUyNjY3MTEsMTQuMjg1Mzk4OCAyMS43MDgxMjU2LDE0LjU2OTY1NzcgMjIuMTQ1MzI0OCwxNC43ODQwOTg2IEMyMS43MDgxMjU2LDE0Ljk5ODUzOTUgMjAuNTI2NjcxMSwxNS4yODI3OTg0IDE4LjcyNjAyMDUsMTUuMjgyNzk4NCBDMTYuOTI1MzcsMTUuMjgyNzk4NCAxNS43NDM5MTU1LDE0Ljk5ODUzOTUgMTUuMzA2NzE2MywxNC43ODQwOTg2IEMxNS43NDM5MTU1LDE0LjU2OTY1NzcgMTYuOTI1MzcsMTQuMjg1Mzk4OCAxOC43MjYwMjA1LDE0LjI4NTM5ODggTDE4LjcyNjAyMDUsMTQuMjg1Mzk4OCBaIE0xOC43NDAyNTQ5LDE3LjQ4MzA2MiBDMTguNjUxNzk4NCwxNy40NTYxMzIyIDE4LjU3NTU0MjcsMTcuNDA0MjY3NCAxOC41NzU1NDI3LDE3LjMwMTUzNTMgQzE4LjU3NTU0MjcsMTcuMTYxODk5MyAxOC42OTA0MzQ2LDE3LjA0OTE5MzIgMTguODMxNzYxNywxNy4wNDkxOTMyIEMxOC44NzQ0NjQ5LDE3LjA0OTE5MzIgMTguOTAzOTUwNCwxNy4wNzUxMjU2IDE4LjkzODUxOTcsMTcuMDkyMDgxNCBMMTguNzQwMjU0OSwxNy40ODMwNjIgWiBNMjEuNjc4NjQwMSwyMS42MzkyMjYzIEMyMS42NDEwMjA2LDIxLjY2ODE1MDkgMjEuNTU0NTk3NSwyMS43MjYwMDAxIDIxLjM3NTY1MDksMjEuNzk0ODIwNiBDMjEuMjEzOTg4OSwyMS44NTc2NTY4IDIxLjAyMjg0MTMsMjEuOTEzNTExMiAyMC44MTAzNDIyLDIxLjk2MTM4NjQgQzIwLjIzODkzMywyMi4wOTEwNDgzIDE5LjUzNjM2NDEsMjIuMTYyODYxMSAxOC44MzE3NjE3LDIyLjE2Mjg2MTEgQzE3LjI5MDM4MDUsMjIuMTYyODYxMSAxNi4yMTU2ODM5LDIxLjg0MDcwMSAxNS45ODU5MDAxLDIxLjY0MTIyMTEgTDE1LjI5NzU2NTYsMTUuODQ3MzI2NiBDMTYuNDg1MTIwNiwxNi4yNDgyODEzIDE4LjIzNDkzNCwxNi4yODAxOTgxIDE4LjcyNjAyMDUsMTYuMjgwMTk4MSBDMTkuMjIyMTkwOCwxNi4yODAxOTgxIDIxLjAwMTQ4OTcsMTYuMjQ3MjgzOSAyMi4xOTAwNjE0LDE1LjgzNTM1NzggTDIxLjk4NzcyOTcsMTguMTMzMzY2NiBDMjEuMjUyNjI1MSwxNy44NTcwODY5IDIwLjM3OTI0MzUsMTcuNDc3MDc3NiAxOS41NDc1NDgzLDE3LjA4NTA5OTYgQzE5LjQ1MDk1NzgsMTYuNzgwODkyNyAxOS4xNzIzNzA0LDE2LjU1NTQ4MDQgMTguODMxNzYxNywxNi41NTU0ODA0IEMxOC40MTI4NjM5LDE2LjU1NTQ4MDQgMTguMDcyMjU1MywxNi44OTA2MDY2IDE4LjA3MjI1NTMsMTcuMzAxNTM1MyBDMTguMDcyMjU1MywxNy43MTI0NjM5IDE4LjQxMjg2MzksMTguMDQ2NTkyOCAxOC44MzE3NjE3LDE4LjA0NjU5MjggQzE4LjkzMjQxOTIsMTguMDQ2NTkyOCAxOS4wMjY5NzYyLDE4LjAyNTY0NzQgMTkuMTE0NDE2MSwxNy45OTA3Mzg0IEMyMC4yOTE4MDM2LDE4LjU1MTI3NyAyMS4yMDQ4MzgyLDE4LjkzNTI3NTkgMjEuODk1MjA2MiwxOS4xNzY2NDY2IEwyMS42Nzg2NDAxLDIxLjYzOTIyNjMgWiBNMTQuMTUzNzMwNiwxNC44NDE5NDc4IEwxNC45NzYyNzUxLDIxLjczMjk4MTkgQzE0Ljk3NjI3NTEsMjMuMTQ0MzAyNCAxOC42NzQxNjY3LDIzLjE2MDI2MDcgMTguODMxNzYxNywyMy4xNjAyNjA3IEMxOS42MTE2MDMsMjMuMTYwMjYwNyAyMC4zOTU1MTEzLDIzLjA3OTQ3MTQgMjEuMDM4MDkyNCwyMi45MzM4NTEgQzIxLjMwNjUxMjQsMjIuODczMDA5NyAyMS41NDU0NDY4LDIyLjgwMTE5NjkgMjEuNzQ4Nzk1MywyMi43MjI0MDIzIEMyMi4zNzIwNTgzLDIyLjQ4MTAzMTYgMjIuNjg3MjQ4NCwyMi4xNDc5MDAxIDIyLjY4NjIzMTYsMjEuNzc1ODcwMSBMMjIuODg5NTgwMSwxOS40NzA4Nzk1IEMyMy4xODg1MDIzLDE5LjUzODcwMjcgMjMuNDI0Mzg2NSwxOS41Njg2MjQ3IDIzLjYwNTM2NjcsMTkuNTY4NjI0NyBDMjQuMDgzMjM1NSwxOS41Njg2MjQ3IDI0LjIwOTMxMTYsMTkuMzgwMTE2MSAyNC4yOTU3MzQ3LDE5LjI1MDQ1NDIgTDI0LjM3MTk5MDMsMTguNzczNjk3MSBDMjQuMjQ5OTgxMiwxOC4yODE5NzkxIDIzLjM3MjUzMjcsMTcuNTg2NzkxNiAyMy4wNzQ2MjcyLDE3LjM3MDM1NTkgTDIzLjI5OTMyNzIsMTQuODI2OTg2OCBMMjMuMjk0MjQzNSwxNC44MjU5ODk0IEMyMy4yOTUyNjAzLDE0LjgxMjAyNTggMjMuMzAxMzYwNywxNC43OTkwNTk2IDIzLjMwMTM2MDcsMTQuNzg0MDk4NiBDMjMuMzAxMzYwNywxMy4zNTk4MTE5IDE5LjQ4OTU5NCwxMy4yODc5OTkxIDE4LjcyNjAyMDUsMTMuMjg3OTk5MSBDMTcuOTYyNDQ3MSwxMy4yODc5OTkxIDE0LjE1MDY4MDQsMTMuMzU5ODExOSAxNC4xNTA2ODA0LDE0Ljc4NDA5ODYgQzE0LjE1MDY4MDQsMTQuODA0MDQ2NiAxNC4xNTg4MTQzLDE0LjgyMTAwMjQgMTQuMTYwODQ3OCwxNC44NDA5NTA0IEwxNC4xNTM3MzA2LDE0Ljg0MTk0NzggWiBNMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEMyMy41MDk3OTI5LDkuMzk0MTUwOTYgMjcuMzg3NjQ3OSwxMy4xOTcyMzU4IDI3LjM4NzY0NzksMTcuODcyMDQ3OSBDMjcuMzg3NjQ3OSwyMi41NDY4NiAyMy41MDk3OTI5LDI2LjM0OTk0NDggMTguNzQ1MzM4NiwyNi4zNDk5NDQ4IEMxMy45Nzk4Njc3LDI2LjM0OTk0NDggMTAuMTAzMDI5NCwyMi41NDY4NiAxMC4xMDMwMjk0LDE3Ljg3MjA0NzkgQzEwLjEwMzAyOTQsMTMuMTk3MjM1OCAxMy45Nzk4Njc3LDkuMzk0MTUwOTYgMTguNzQ1MzM4Niw5LjM5NDE1MDk2IEwxOC43NDUzMzg2LDkuMzk0MTUwOTYgWiBNNi4wMTY3NDIyNiwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIyLjI2NDU5NTkgTDEwLjE5MzUxOTUsMjIuMjY0NTk1OSBDMTEuODExMTU2NCwyNS4yODE3Mjk4IDE1LjAzNDIyOTQsMjcuMzQ3MzQ0NCAxOC43NDUzMzg2LDI3LjM0NzM0NDQgQzI0LjA3MTAzNDYsMjcuMzQ3MzQ0NCAyOC40MDQzOTAxLDIzLjA5NjQyNzIgMjguNDA0MzkwMSwxNy44NzIwNDc5IEMyOC40MDQzOTAxLDEyLjY0NzY2ODYgMjQuMDcxMDM0Niw4LjM5Njc1MTMzIDE4Ljc0NTMzODYsOC4zOTY3NTEzMyBDMTQuMzM1NzI3NSw4LjM5Njc1MTMzIDEwLjYxMzQzNCwxMS4zMTQxNDUzIDkuNDYyNDgxNzksMTUuMjgyNzk4NCBMNi4wMTY3NDIyNiwxNS4yODI3OTg0IEw2LjAxNjc0MjI2LDE2LjI4MDE5ODEgTDkuMjMzNzE0NzgsMTYuMjgwMTk4MSBDOS4xNDMyMjQ3MiwxNi43OTg4NDU5IDkuMDg2Mjg3MTUsMTcuMzI4NDY1MSA5LjA4NjI4NzE1LDE3Ljg3MjA0NzkgQzkuMDg2Mjg3MTUsMTguMDA3Njk0MiA5LjEwMDUyMTU0LDE4LjE0MDM0ODQgOS4xMDY2MjIsMTguMjc0OTk3MyBMNSwxOC4yNzQ5OTczIEw1LDE5LjI3MjM5NyBMOS4yMDMyMTI1MSwxOS4yNzIzOTcgQzkuMzA3OTM2OTYsMTkuOTY0NTkyMyA5LjQ4NzkwMDM0LDIwLjYzMTg1MjcgOS43MzgwMTg5NCwyMS4yNjcxOTYyIEw2LjAxNjc0MjI2LDIxLjI2NzE5NjIgWiBNMzMuNTAzMzUyNiwzMi41MzE4Mjc3IEMzMi44ODkyNDAyLDMzLjEzNTI1NDUgMzEuODIyNjc3NiwzMy4xNDAyNDE1IDMxLjIwNzU0ODUsMzIuNTM2ODE0NyBMMjUuOTU1MDU4LDI3LjM4NTI0NTYgQzI2LjgzNTU1NjgsMjYuNzQxOTIyOCAyNy42MjE0OTg2LDI1Ljk4Nzg4ODcgMjguMjk0NTgyLDI1LjEzOTEwMTYgTDMzLjUwOTQ1MywzMC4yODA2OTY4IEMzMy44MTU0OTI1LDMwLjU4MDkxNCAzMy45ODMyNTQ5LDMwLjk4MDg3MTMgMzMuOTgzMjU0OSwzMS40MDY3NjA5IEMzMy45ODIyMzgyLDMxLjgzMTY1MzIgMzMuODEyNDQyMiwzMi4yMzE2MTA0IDMzLjUwMzM1MjYsMzIuNTMxODI3NyBMMzMuNTAzMzUyNiwzMi41MzE4Mjc3IFogTTM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMjguODk1NDc2NiwyNC4zMTcyNDQzIEMzMC4xMjQ3MTgsMjIuNDU5MDg4OCAzMC44NDc2MjE4LDIwLjI0ODg1MTIgMzAuODQ3NjIxOCwxNy44NzIwNDc5IEMzMC44NDc2MjE4LDExLjMyNjExNDEgMjUuNDE4MjE4MSw2IDE4Ljc0NTMzODYsNiBDMTMuOTQ5MzY1NCw2IDkuNTk5NzQxOTksOC43ODE3NDc1OSA3LjY2NTg5ODIxLDEzLjA4NjUyNDQgTDguNTk1MjAwNjQsMTMuNDg5NDczOSBDMTAuMzY4Mzk5MSw5LjU0NTc1NTcxIDE0LjM1MTk5NTMsNi45OTczOTk2NCAxOC43NDUzMzg2LDYuOTk3Mzk5NjQgQzI0Ljg1Njk3NjQsNi45OTczOTk2NCAyOS44MzA4Nzk1LDExLjg3NTY4MTMgMjkuODMwODc5NSwxNy44NzIwNDc5IEMyOS44MzA4Nzk1LDIzLjg2ODQxNDUgMjQuODU2OTc2NCwyOC43NDc2OTM1IDE4Ljc0NTMzODYsMjguNzQ3NjkzNSBDMTUuMDEyODc3OCwyOC43NDc2OTM1IDExLjU1MjkwMzksMjYuOTIxNDU0OCA5LjQ5MDk1MDU3LDIzLjg2MzQyNzUgTDguNjQyOTg3NTMsMjQuNDEzOTkyMSBDMTAuODk0MDU0OSwyNy43NTIyODg3IDE0LjY3MDIzNTcsMjkuNzQ1MDkzMiAxOC43NDUzMzg2LDI5Ljc0NTA5MzIgQzIxLjA3Nzc0NTQsMjkuNzQ1MDkzMiAyMy4yNTA1MjM2LDI5LjA4MjgxOTggMjUuMTAwOTk0NSwyNy45NTY3NTU2IEwzMC40ODg3MTE4LDMzLjI0Mjk3MzcgQzMwLjk4NjkxNTUsMzMuNzMwNzAyMSAzMS42NDc3OTc5LDM0IDMyLjM0OTM1MDEsMzQgQzMzLjA1NTk4NiwzNCAzMy43MjA5MzU0LDMzLjcyODcwNzMgMzQuMjIxMTcyNiwzMy4yMzg5ODQxIEMzNC43MjE0MDk4LDMyLjc1MTI1NTcgMzQuOTk3OTYzNywzMi4xMDA5NTExIDM1LDMxLjQwNzc1ODMgQzM1LjAwMTAxMzksMzAuNzE1NTYzIDM0LjcyNjQ5MzUsMzAuMDY0MjYxIDM0LjIyOTMwNjYsMjkuNTc2NTMyNiBMMzQuMjI5MzA2NiwyOS41NzY1MzI2IFoiIGlkPSJBbWF6b24tQXRoZW5hX0ljb25fMzJfU3F1aWQiIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4gPC9nPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "Amazon Anthena", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c40f1964-3162-4f31-8d4d-706c08287860": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "e1d137e9-5d73-4faf-bae9-d717b4f48fa5": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "24334889-927d-405f-a38a-cc33b8a7691b": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "5e77cc5c-c406-4c58-a3c9-dc8ccaab9879": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "e487a7a5-5fac-4999-87ef-d172be1df5fd": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "412b08a0-ab17-43f6-a357-2c9ce30ec8b1": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "6bfa820c-7717-44c3-abc5-d36cc544ebda": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1a856427-72f4-4d72-9391-2bfaf1905cf9": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "dc6f0268-6cf9-46b3-b690-8c7ef601506a": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "9e15a841-6339-4bee-ab2e-e98306bd7ba5": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "f88d8404-8778-4184-b4b2-a80c95e14652": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "unbundled-bezier", + curveStyle: "unbundled-bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-distances": "40px -40px", + controlPointDistances: "40px -40px", + "control-point-weights": "0.25 0.75", + controlPointWeights: "0.25 0.75", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-distance": "40px -40px", + controlPointDistance: "40px -40px", + "control-point-weight": "0.25 0.75", + controlPointWeight: "0.25 0.75", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "fe53a0a6-030f-4744-80ef-85bde6545fee": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(208,2,27)", + lineColor: "rgb(208,2,27)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "unbundled-bezier", + curveStyle: "unbundled-bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-distances": "40px -40px", + controlPointDistances: "40px -40px", + "control-point-weights": "0.25 0.75", + controlPointWeights: "0.25 0.75", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-distance": "40px -40px", + controlPointDistance: "40px -40px", + "control-point-weight": "0.25 0.75", + controlPointWeight: "0.25 0.75", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "6d16c0d6-4086-4080-a8fe-8fbd54c986ca": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(208,2,27)", + lineColor: "rgb(208,2,27)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "unbundled-bezier", + curveStyle: "unbundled-bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-distances": "40px -40px", + controlPointDistances: "40px -40px", + "control-point-weights": "0.25 0.75", + controlPointWeights: "0.25 0.75", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-distance": "40px -40px", + controlPointDistance: "40px -40px", + "control-point-weight": "0.25 0.75", + controlPointWeight: "0.25 0.75", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "a5cc1341-062d-41ed-b180-a3e058eb30e8": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(208,2,27)", + lineColor: "rgb(208,2,27)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "013745d4-6728-4a77-88c0-3e5ff2d13288": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2bd29128-636d-470b-896a-ce3c80d2e6ff": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "aaacebea-45b7-401c-b806-476dc2c90e4e": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "a40e56a2-132a-4187-aca8-a8e9b1a72c07": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "ed1328e1-0cf6-4b1d-b7e8-05f2c5f2ab27": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(255,192,52)", + lineColor: "rgb(255,192,52)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "e88a938e-f2c2-4ca8-9191-9e44ffce03fe": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(77,171,247)", + lineColor: "rgb(77,171,247)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "e7d173a6-cddf-4988-81a1-14859637b28d": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "triangle", + targetArrowShape: "triangle", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-79d1f362-39b3-46f2-b658-42a16984f88e-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-dapr-crds.js b/static/embed-test/embedded-design-dapr-crds.js new file mode 100644 index 000000000000..1471dd28cd73 --- /dev/null +++ b/static/embed-test/embedded-design-dapr-crds.js @@ -0,0 +1,4706 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "211155a6-49c3-456e-bff3-e207f7367472", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "httpendpoints.dapr.io", + services: { + "211155a6-49c3-456e-bff3-e207f7367472": { + settings: { + spec: { + group: "dapr.io", + names: { + kind: "HTTPEndpoint", + "list Kind": "HTTPEndpointList", + plural: "httpendpoints", + singular: "httpendpoint" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "HTTPEndpoint describes a Dapr HTTPEndpoint type for external service invocation. This endpoint can be external to Dapr, or external to the environment.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + auth: { + description: + "Auth represents authentication details for the component.", + properties: { "secret Store": { type: "string" } }, + required: ["secretStore"], + type: "object" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "HTTPEndpointSpec describes an access specification for allowing external service invocations.", + properties: { + "base Url": { type: "string" }, + "client TLS": { + description: + "TLS describes how to build client or server TLS configurations.", + properties: { + certificate: { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + }, + "private Key": { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + }, + renegotiation: { + default: "Never", + description: + "Renegotiation sets the underlying tls negotiation strategy for an http channel.", + enum: ["Never", "OnceAsClient", "FreelyAsClient"], + type: "string" + }, + "root CA": { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + } + }, + type: "object" + }, + headers: { + items: { + description: "NameValuePair is a name/value pair.", + properties: { + "env Ref": { + description: + "EnvRef is the name of an environmental variable to read the value from.", + type: "string" + }, + name: { + description: "Name of the property.", + type: "string" + }, + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + } + }, + required: ["baseUrl"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "httpendpoints.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "211155a6-49c3-456e-bff3-e207f7367472", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1032 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 608.3894897141281, posY: 360.25465896620716 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 608.3894897141281, y: 360.25465896620716 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e62926ff-bf42-4997-8608-334b42b26580", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "resiliencies.dapr.io", + services: { + "e62926ff-bf42-4997-8608-334b42b26580": { + settings: { + spec: { + group: "dapr.io", + names: { + categories: ["dapr"], + kind: "Resiliency", + "list Kind": "ResiliencyList", + plural: "resiliencies", + singular: "resiliency" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + properties: { + policies: { + properties: { + "circuit Breakers": { + additionalProperties: { + properties: { + interval: { type: "string" }, + "max Requests": { type: "integer" }, + timeout: { type: "string" }, + trip: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + retries: { + additionalProperties: { + properties: { + duration: { type: "string" }, + "max Interval": { type: "string" }, + "max Retries": { type: "integer" }, + policy: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + timeouts: { + additionalProperties: { type: "string" }, + type: "object" + } + }, + type: "object" + }, + targets: { + properties: { + actors: { + additionalProperties: { + properties: { + "circuit Breaker": { type: "string" }, + "circuit Breaker Cache Size": { + type: "integer" + }, + "circuit Breaker Scope": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + apps: { + additionalProperties: { + properties: { + "circuit Breaker": { type: "string" }, + "circuit Breaker Cache Size": { + type: "integer" + }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + components: { + additionalProperties: { + properties: { + inbound: { + properties: { + "circuit Breaker": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + outbound: { + properties: { + "circuit Breaker": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + } + }, + type: "object" + }, + type: "object" + } + }, + type: "object" + } + }, + required: ["policies", "targets"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "resiliencies.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" }, + annotations: { "controller-gen.kubebuilder.io/version": "v0.5.0" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "e62926ff-bf42-4997-8608-334b42b26580", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "-0.49278909077003785px", + width: "20px", + "z-index": 1033 + }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 548.5054272590844, posY: 195.322235233187 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 548.5054272590844, y: 195.322235233187 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ee72071f-290a-4961-966d-9096ce4c1273", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "subscriptions.dapr.io", + services: { + "ee72071f-290a-4961-966d-9096ce4c1273": { + settings: { + spec: { + conversion: { + strategy: "Webhook", + webhook: { + "client Config": { + service: { + name: "dapr-webhook", + namespace: "replaceme", + path: "/convert" + } + }, + "conversion Review Versions": ["v1", "v2alpha1"] + } + }, + group: "dapr.io", + names: { + categories: ["all", "dapr"], + kind: "Subscription", + "list Kind": "SubscriptionList", + plural: "subscriptions", + singular: "subscription" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "Subscription describes an pub/sub event subscription.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "SubscriptionSpec is the spec for an event subscription.", + properties: { + "bulk Subscribe": { + description: "Represents bulk subscribe properties", + properties: { + enabled: { type: "boolean" }, + "max Await Duration Ms": { type: "integer" }, + "max Messages Count": { type: "integer" } + }, + required: ["enabled"], + type: "object" + }, + "dead Letter Topic": { type: "string" }, + metadata: { + additionalProperties: { type: "string" }, + type: "object" + }, + pubsubname: { type: "string" }, + route: { type: "string" }, + topic: { type: "string" } + }, + required: ["pubsubname", "route", "topic"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: false + }, + { + name: "v2alpha1", + schema: { + "open APIV3Schema": { + description: + "Subscription describes an pub/sub event subscription.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "SubscriptionSpec is the spec for an event subscription.", + properties: { + "bulk Subscribe": { + description: "Represents bulk subscribe properties", + properties: { + enabled: { type: "boolean" }, + "max Await Duration Ms": { type: "integer" }, + "max Messages Count": { type: "integer" } + }, + required: ["enabled"], + type: "object" + }, + "dead Letter Topic": { + description: + "The optional dead letter queue for this topic to send events to.", + type: "string" + }, + metadata: { + additionalProperties: { type: "string" }, + description: + "The optional metadata to provide the subscription.", + type: "object" + }, + pubsubname: { + description: "The PubSub component name.", + type: "string" + }, + routes: { + description: + "The Routes configuration for this topic.", + properties: { + default: { type: "string" }, + rules: { + description: "The list of rules for this topic.", + items: { + description: + "Rule is used to specify the condition for sending a message to a specific path.", + properties: { + match: { + description: + "The optional CEL expression used to match the event. If the match is not specified, then the route is considered the default. The rules are tested in the order specified, so they should be define from most-to-least specific. The default route should appear last in the list.", + type: "string" + }, + path: { + description: + "The path for events that match this rule.", + type: "string" + } + }, + required: ["match", "path"], + type: "object" + }, + type: "array" + } + }, + type: "object" + }, + topic: { + description: "The topic name to subscribe to.", + type: "string" + } + }, + required: ["pubsubname", "routes", "topic"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "subscriptions.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "ee72071f-290a-4961-966d-9096ce4c1273", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1029 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 601.5201865278317, posY: 268.60289512375624 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 601.5201865278317, y: 268.60289512375624 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2aba3320-f1ad-4bec-b29a-1be5011e10da", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "components.dapr.io", + services: { + "2aba3320-f1ad-4bec-b29a-1be5011e10da": { + settings: { + spec: { + group: "dapr.io", + names: { + categories: ["all", "dapr"], + kind: "Component", + plural: "components", + singular: "component" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: "Component describes an Dapr component type.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + auth: { + description: + "Auth represents authentication details for the component.", + properties: { "secret Store": { type: "string" } }, + required: ["secretStore"], + type: "object" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: "ComponentSpec is the spec for a component.", + properties: { + "ignore Errors": { type: "boolean" }, + "init Timeout": { type: "string" }, + metadata: { + items: { + description: "NameValuePair is a name/value pair.", + properties: { + "env Ref": { + description: + "EnvRef is the name of an environmental variable to read the value from.", + type: "string" + }, + name: { + description: "Name of the property.", + type: "string" + }, + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + }, + type: { type: "string" }, + version: { type: "string" } + }, + required: ["metadata", "type", "version"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "components.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "2aba3320-f1ad-4bec-b29a-1be5011e10da", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1009 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 490.64709666756, posY: 268.6966891855644 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 490.64709666756, y: 268.6966891855644 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ce351c45-cd51-4211-984b-112cdc405549", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "configurations.dapr.io", + services: { + "ce351c45-cd51-4211-984b-112cdc405549": { + settings: { + spec: { + group: "dapr.io", + names: { + kind: "Configuration", + "list Kind": "ConfigurationList", + plural: "configurations", + singular: "configuration" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "Configuration describes an Dapr configuration setting.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + spec: { + description: + "ConfigurationSpec is the spec for an configuration.", + properties: { + "access Control": { + description: + "AccessControlSpec is the spec object in ConfigurationSpec.", + properties: { + "default Action": { type: "string" }, + policies: { + items: { + description: + "AppPolicySpec defines the policy data structure for each app.", + properties: { + "app Id": { type: "string" }, + "default Action": { type: "string" }, + namespace: { type: "string" }, + operations: { + items: { + description: + "AppOperationAction defines the data structure for each app operation.", + properties: { + action: { type: "string" }, + "http Verb": { + items: { type: "string" }, + type: "array" + }, + name: { type: "string" } + }, + required: ["action", "name"], + type: "object" + }, + type: "array" + }, + "trust Domain": { type: "string" } + }, + required: ["appId"], + type: "object" + }, + type: "array" + }, + "trust Domain": { type: "string" } + }, + type: "object" + }, + api: { + description: + "APISpec describes the configuration for Dapr APIs.", + properties: { + allowed: { + description: + "List of allowed APIs. Can be used in conjunction with denied.", + items: { + description: + "APIAccessRule describes an access rule for allowing or denying a Dapr API.", + properties: { + name: { type: "string" }, + protocol: { type: "string" }, + version: { type: "string" } + }, + required: ["name", "version"], + type: "object" + }, + type: "array" + }, + denied: { + description: + "List of denied APIs. Can be used in conjunction with allowed.", + items: { + description: + "APIAccessRule describes an access rule for allowing or denying a Dapr API.", + properties: { + name: { type: "string" }, + protocol: { type: "string" }, + version: { type: "string" } + }, + required: ["name", "version"], + type: "object" + }, + type: "array" + } + }, + type: "object" + }, + "app Http Pipeline": { + description: + "PipelineSpec defines the middleware pipeline.", + properties: { + handlers: { + items: { + description: + "HandlerSpec defines a request handlers.", + properties: { + name: { type: "string" }, + selector: { + description: + "SelectorSpec selects target services to which the handler is to be applied.", + properties: { + fields: { + items: { + description: + "SelectorField defines a selector fields.", + properties: { + field: { type: "string" }, + value: { type: "string" } + }, + required: ["field", "value"], + type: "object" + }, + type: "array" + } + }, + required: ["fields"], + type: "object" + }, + type: { type: "string" } + }, + required: ["name", "type"], + type: "object" + }, + type: "array" + } + }, + required: ["handlers"], + type: "object" + }, + components: { + description: + "ComponentsSpec describes the configuration for Dapr components", + properties: { + deny: { + description: + "Denylist of component types that cannot be instantiated", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + features: { + items: { + description: + "FeatureSpec defines the features that are enabled/disabled.", + properties: { + enabled: { type: "boolean" }, + name: { type: "string" } + }, + required: ["enabled", "name"], + type: "object" + }, + type: "array" + }, + "http Pipeline": { + description: + "PipelineSpec defines the middleware pipeline.", + properties: { + handlers: { + items: { + description: + "HandlerSpec defines a request handlers.", + properties: { + name: { type: "string" }, + selector: { + description: + "SelectorSpec selects target services to which the handler is to be applied.", + properties: { + fields: { + items: { + description: + "SelectorField defines a selector fields.", + properties: { + field: { type: "string" }, + value: { type: "string" } + }, + required: ["field", "value"], + type: "object" + }, + type: "array" + } + }, + required: ["fields"], + type: "object" + }, + type: { type: "string" } + }, + required: ["name", "type"], + type: "object" + }, + type: "array" + } + }, + required: ["handlers"], + type: "object" + }, + logging: { + description: + "LoggingSpec defines the configuration for logging.", + properties: { + "api Logging": { + description: "Configure API logging.", + properties: { + enabled: { + description: + "Default value for enabling API logging. Sidecars can always override this by setting `--enable-api-logging` to true or false explicitly. The default value is false.", + type: "boolean" + }, + "obfuscate URLs": { + description: + "When enabled, obfuscates the values of URLs in HTTP API logs, logging the route name rather than the full path being invoked, which could contain PII. Default: false. This option has no effect if API logging is disabled.", + type: "boolean" + }, + "omit Health Checks": { + description: + "If true, health checks are not reported in API logs. Default: false. This option has no effect if API logging is disabled.", + type: "boolean" + } + }, + type: "object" + } + }, + type: "object" + }, + mTLS: { + description: "MTLSSpec defines mTLS configuration.", + properties: { + "allowed Clock Skew": { type: "string" }, + "control Plane Trust Domain": { type: "string" }, + enabled: { type: "boolean" }, + "sentry Address": { type: "string" }, + "token Validators": { + description: + 'Additional token validators to use. When Dapr is running in Kubernetes mode, this is in addition to the built-in "kubernetes" validator. In self-hosted mode, enabling a custom validator will disable the built-in "insecure" validator.', + items: { + description: + "ValidatorSpec contains additional token validators to use.", + properties: { + name: { + description: "Name of the validator", + enum: ["jwks"], + type: "string" + }, + options: { + description: + "Options for the validator, if any", + type: "object", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + }, + "workload Cert TTL": { type: "string" } + }, + required: ["enabled"], + type: "object" + }, + metric: { + default: { enabled: true }, + description: + "MetricSpec defines metrics configuration.", + properties: { + enabled: { type: "boolean" }, + http: { + description: + "MetricHTTP defines configuration for metrics for the HTTP server", + properties: { + "increased Cardinality": { + description: + "If true, metrics for the HTTP server are collected with increased cardinality. The default is true in Dapr 1.13, but will be changed to false in 1.14+", + type: "boolean" + } + }, + type: "object" + }, + rules: { + items: { + description: + "MetricsRule defines configuration options for a metric.", + properties: { + labels: { + items: { + description: + "MetricsLabel defines an object that allows to set regex expressions for a label.", + properties: { + name: { type: "string" }, + regex: { + additionalProperties: { + type: "string" + }, + type: "object" + } + }, + required: ["name", "regex"], + type: "object" + }, + type: "array" + }, + name: { type: "string" } + }, + required: ["labels", "name"], + type: "object" + }, + type: "array" + } + }, + required: ["enabled"], + type: "object" + }, + metrics: { + default: { enabled: true }, + description: + "MetricSpec defines metrics configuration.", + properties: { + enabled: { type: "boolean" }, + http: { + description: + "MetricHTTP defines configuration for metrics for the HTTP server", + properties: { + "increased Cardinality": { + description: + "If true, metrics for the HTTP server are collected with increased cardinality. The default is true in Dapr 1.13, but will be changed to false in 1.14+", + type: "boolean" + } + }, + type: "object" + }, + rules: { + items: { + description: + "MetricsRule defines configuration options for a metric.", + properties: { + labels: { + items: { + description: + "MetricsLabel defines an object that allows to set regex expressions for a label.", + properties: { + name: { type: "string" }, + regex: { + additionalProperties: { + type: "string" + }, + type: "object" + } + }, + required: ["name", "regex"], + type: "object" + }, + type: "array" + }, + name: { type: "string" } + }, + required: ["labels", "name"], + type: "object" + }, + type: "array" + } + }, + required: ["enabled"], + type: "object" + }, + "name Resolution": { + description: + "NameResolutionSpec is the spec for name resolution configuration.", + properties: { + component: { type: "string" }, + configuration: { + description: + "DynamicValue is a dynamic value struct for the component.metadata pair value.", + type: "object", + "x-kubernetes-preserve-unknown-fields": true + }, + version: { type: "string" } + }, + required: ["component", "configuration", "version"], + type: "object" + }, + secrets: { + description: + "SecretsSpec is the spec for secrets configuration.", + properties: { + scopes: { + items: { + description: + "SecretsScope defines the scope for secrets.", + properties: { + "allowed Secrets": { + items: { type: "string" }, + type: "array" + }, + "default Access": { type: "string" }, + "denied Secrets": { + items: { type: "string" }, + type: "array" + }, + "store Name": { type: "string" } + }, + required: ["storeName"], + type: "object" + }, + type: "array" + } + }, + required: ["scopes"], + type: "object" + }, + tracing: { + description: + "TracingSpec defines distributed tracing configuration.", + properties: { + otel: { + description: + "OtelSpec defines Otel exporter configurations.", + properties: { + "endpoint Address": { type: "string" }, + "is Secure": { type: "boolean" }, + protocol: { type: "string" } + }, + required: [ + "endpointAddress", + "isSecure", + "protocol" + ], + type: "object" + }, + "sampling Rate": { type: "string" }, + stdout: { type: "boolean" }, + zipkin: { + description: + "ZipkinSpec defines Zipkin trace configurations.", + properties: { + "endpoint Address": { type: "string" } + }, + required: ["endpointAddress"], + type: "object" + } + }, + required: ["samplingRate"], + type: "object" + }, + wasm: { + description: + "WasmSpec describes the security profile for all Dapr Wasm components.", + properties: { "strict Sandbox": { type: "boolean" } }, + type: "object" + } + }, + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "configurations.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" }, + annotations: { "controller-gen.kubebuilder.io/version": "v0.11.3" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "9332958f-b8e4-4482-bc16-6a454fcc3ce6", + source: "ce351c45-cd51-4211-984b-112cdc405549", + subType: "Annotation", + target: "d7a820d3-35e1-465d-acf6-2db813906825" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "taxi", + "haystack-radius": "0.5", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ce351c45-cd51-4211-984b-112cdc405549", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: 496.0299034975825, posY: 358.71250893735936 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: 496.0299034975825, y: 358.71250893735936 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d7a820d3-35e1-465d-acf6-2db813906825", + type: "Configuration", + apiVersion: "dapr.io/v1alpha1", + meshType: "dapr", + model: "dapr", + config: { + name: "daprsystem", + services: { + "d7a820d3-35e1-465d-acf6-2db813906825": { + namespace: "default", + settings: { + spec: { + mTLS: { + "allowed Clock Skew": "15m", + "control Plane Trust Domain": "cluster.local", + enabled: true, + "sentry Address": "dapr-sentry.default.svc.cluster.local:443", + "workload Cert TTL": "24h" + } + }, + name: "daprsystem", + namespace: "default", + labels: { + "app.kubernetes.io/component": "config", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.13.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "9332958f-b8e4-4482-bc16-6a454fcc3ce6", + source: "ce351c45-cd51-4211-984b-112cdc405549", + subType: "Annotation", + target: "d7a820d3-35e1-465d-acf6-2db813906825" + }, + style: { + "control-point-distances": "40px -40px", + "control-point-weights": "0.25 0.75", + "curve-style": "taxi", + "haystack-radius": "0.5", + "line-color": "rgb(66,99,235)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "downward", + "taxi-turn": "20px", + "taxi-turn-min-distance": "5px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "d7a820d3-35e1-465d-acf6-2db813906825", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos", + model: "dapr", + modelDisplayName: "Dapr", + primaryColor: "#0d2192", + secondaryColor: "#5266D7", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1028 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/dapr/color/component-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/dapr/white/component-white.svg" + }, + position: { posX: 365.12945944500854, posY: 336.4854352817223 }, + whiteboardData: { style: {} } + } + }, + type: "Configuration" + } + } + } + }, + position: { x: 365.12945944500854, y: 336.4854352817223 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "9332958f-b8e4-4482-bc16-6a454fcc3ce6", + source: "ce351c45-cd51-4211-984b-112cdc405549", + subType: "Annotation", + target: "d7a820d3-35e1-465d-acf6-2db813906825" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "211155a6-49c3-456e-bff3-e207f7367472": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1032", + zIndex: "1032", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "httpendpoints.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "httpendpoints.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e62926ff-bf42-4997-8608-334b42b26580": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1033", + zIndex: "1033", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "resiliencies.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "resiliencies.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ee72071f-290a-4961-966d-9096ce4c1273": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1029", + zIndex: "1029", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "subscriptions.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "subscriptions.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2aba3320-f1ad-4bec-b29a-1be5011e10da": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1009", + zIndex: "1009", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "components.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "components.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ce351c45-cd51-4211-984b-112cdc405549": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1001", + zIndex: "1001", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "configurations.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "configurations.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "d7a820d3-35e1-465d-acf6-2db813906825": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1028", + zIndex: "1028", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "daprsystem", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(13,33,146)", + backgroundColor: "rgb(13,33,146)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(15,39,175)", + borderColor: "rgb(15,39,175)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "daprsystem", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "9332958f-b8e4-4482-bc16-6a454fcc3ce6": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(66,99,235)", + lineColor: "rgb(66,99,235)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "taxi", + curveStyle: "taxi", + "haystack-radius": "0.5", + haystackRadius: "0.5", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-distances": "40px -40px", + controlPointDistances: "40px -40px", + "control-point-weights": "0.25 0.75", + controlPointWeights: "0.25 0.75", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "20px", + taxiTurn: "20px", + "taxi-turn-min-distance": "5px", + taxiTurnMinDistance: "5px", + "taxi-direction": "downward", + taxiDirection: "downward", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-distance": "40px -40px", + controlPointDistance: "40px -40px", + "control-point-weight": "0.25 0.75", + controlPointWeight: "0.25 0.75", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-7eed863e-a37c-493f-a7b6-61e4b29bb678-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-dapr-deployments.js b/static/embed-test/embedded-design-dapr-deployments.js new file mode 100644 index 000000000000..c9613f3c83a8 --- /dev/null +++ b/static/embed-test/embedded-design-dapr-deployments.js @@ -0,0 +1,10055 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "6c3ac91b-c3e2-4312-91b3-4e24841b152e", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "6c3ac91b-c3e2-4312-91b3-4e24841b152e": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-operator" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "operator", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--watch-interval", + "0", + "--max-pod-restarts-per-minute", + "20", + "--log-level", + "info", + "--trust-anchors-file", + "/var/run/secrets/dapr.io/tls/ca.crt", + "--enable-metrics", + "--metrics-port", + "9090" + ], + command: ["/operator"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/operator:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-operator", + ports: [ + { "container Port": 6500 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + }, + { "mount Path": "/tmp", name: "dapr-operator-tmp" } + ] + } + ], + "service Account Name": "dapr-operator", + volumes: [ + { + "empty Dir": { medium: "Memory", "size Limit": "2Mi" }, + name: "dapr-operator-tmp" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-operator", + namespace: "default", + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "92f785f6-2b19-4218-8c6c-c37b2df57410", + metadata: { port: 443, protocol: "TCP" }, + source: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + subType: "Network", + target: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6c3ac91b-c3e2-4312-91b3-4e24841b152e", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 18 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 377.7879471782902, posY: 325.29051916135415 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 377.7879471782902, y: 325.29051916135415 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement-server", + services: { + "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [ + { name: "api", port: 50005 }, + { name: "raft-node", port: 8201 } + ], + "publish Not Ready Addresses": true, + selector: { app: "dapr-placement-server" } + }, + name: "dapr-placement-server", + namespace: "default", + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1251d4b1-46c4-47e5-9c3b-56602a045c27", + source: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + subType: "Annotation", + target: "472662f9-4151-4987-8bb8-a43ead2f2e62" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 16 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 332.0143313869707, posY: 632.3318293159355 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 332.0143313869707, y: 632.3318293159355 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server", + services: { + "787667bc-3cdf-4388-9f17-61df0e81a8d9": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [ + { name: "api", port: 50006 }, + { name: "etcd-client", port: 2379 }, + { name: "etcd-httpclient", port: 2330 }, + { name: "etcd-peer", port: 2380 } + ], + "publish Not Ready Addresses": true, + selector: { app: "dapr-scheduler-server" } + }, + name: "dapr-scheduler-server", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "86d22457-aaae-4bd9-9b79-39d5dd3b7c93", + source: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + subType: "Annotation", + target: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 29 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 751.7602273509872, posY: 403.08062156745495 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 751.7602273509872, y: 403.08062156745495 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "484a881e-7cbc-4b14-9962-cd7fc4b1775d": { + namespace: "default", + settings: { + spec: { + ports: [ + { name: "grpc", port: 443, protocol: "TCP", "target Port": 50001 } + ], + selector: { app: "dapr-sentry" }, + type: "ClusterIP" + }, + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2e21ce73-db2a-4ee3-a531-02fd847689a6", + metadata: { port: 443, protocol: "TCP" }, + source: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + subType: "Network", + target: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 35 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 448.6535707745119, posY: 577.2710372065272 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 448.6535707745119, y: 577.2710372065272 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-api", + services: { + "40fc8324-31d0-44a2-af15-b67e7ee01af4": { + namespace: "default", + settings: { + spec: { + ports: [ + { name: "grpc", port: 443, protocol: "TCP", "target Port": 6500 }, + { name: "legacy", port: 80, protocol: "TCP", "target Port": 6500 } + ], + selector: { app: "dapr-operator" }, + type: "ClusterIP" + }, + name: "dapr-api", + namespace: "default", + labels: { + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "92f785f6-2b19-4218-8c6c-c37b2df57410", + metadata: { port: 443, protocol: "TCP" }, + source: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + subType: "Network", + target: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 21 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 547.317785463231, posY: 531.6015608121858 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 547.317785463231, y: 531.6015608121858 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "e5a5d1c1-ba59-4f76-b892-68374a602dc6": { + namespace: "default", + settings: { + spec: { + ports: [ + { + name: "https", + port: 443, + protocol: "TCP", + "target Port": "https" + } + ], + selector: { app: "dapr-sidecar-injector" }, + type: "ClusterIP" + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "9c3e106c-cac0-4291-87c8-7b25a08bf260", + source: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + subType: "Network", + target: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 44 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 652.8572723478202, posY: 461.26822108624714 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 652.8572723478202, y: 461.26822108624714 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "472662f9-4151-4987-8bb8-a43ead2f2e62", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement-server", + services: { + "472662f9-4151-4987-8bb8-a43ead2f2e62": { + namespace: "default", + settings: { + spec: { + "pod Management Policy": "Parallel", + replicas: 1, + selector: { "match Labels": { app: "dapr-placement-server" } }, + "service Name": "dapr-placement-server", + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "placement", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--replicationFactor", + "100", + "--max-api-level", + "10", + "--min-api-level", + "0", + "--metrics-port", + "9090", + "--tls-enabled", + "--trust-domain=cluster.local", + "--trust-anchors-file=/var/run/secrets/dapr.io/tls/ca.crt", + "--sentry-address=dapr-sentry.default.svc.cluster.local:443", + "--mode=kubernetes" + ], + command: ["/placement"], + env: [ + { + name: "PLACEMENT_ID", + "value From": { + "field Ref": { "field Path": "metadata.name" } + } + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/placement:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 10, + "period Seconds": 3 + }, + name: "dapr-placement-server", + ports: [ + { "container Port": 50005, name: "api" }, + { "container Port": 8201, name: "raft-node" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As User": 0 + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token" + } + ] + } + ], + "service Account Name": "dapr-placement", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-placement-server", + namespace: "default", + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1251d4b1-46c4-47e5-9c3b-56602a045c27", + source: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + subType: "Annotation", + target: "472662f9-4151-4987-8bb8-a43ead2f2e62" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "472662f9-4151-4987-8bb8-a43ead2f2e62", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 40 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: 178.51706919255705, posY: 449.90318309886123 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: 178.51706919255705, y: 449.90318309886123 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server", + services: { + "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9": { + namespace: "default", + settings: { + spec: { + "pod Management Policy": "Parallel", + replicas: 1, + selector: { "match Labels": { app: "dapr-scheduler-server" } }, + "service Name": "dapr-scheduler-server", + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "scheduler", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--listen-address=0.0.0.0", + "--id", + "$(SCHEDULER_ID)", + "--replica-count", + "1", + "--initial-cluster", + "dapr-scheduler-server-0=http://dapr-scheduler-server-0.dapr-scheduler-server.default.svc.cluster.local:2380", + "--etcd-client-ports", + "dapr-scheduler-server-0=2379", + "--etcd-client-http-ports", + "dapr-scheduler-server-0=2330", + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--etcd-data-dir=/var/run/data/dapr-scheduler/default/$(SCHEDULER_ID)", + "--etcd-space-quota=2147483648", + "--etcd-compaction-mode=periodic", + "--etcd-compaction-retention=24h", + "--tls-enabled", + "--trust-domain=cluster.local", + "--trust-anchors-file=/var/run/secrets/dapr.io/tls/ca.crt", + "--sentry-address=dapr-sentry.default.svc.cluster.local:443", + "--mode=kubernetes" + ], + command: ["/scheduler"], + env: [ + { + name: "SCHEDULER_ID", + "value From": { + "field Ref": { "field Path": "metadata.name" } + } + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "POD_IP", + "value From": { + "field Ref": { "field Path": "status.podIP" } + } + } + ], + image: "ghcr.io/dapr/scheduler:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 10, + "period Seconds": 3 + }, + name: "dapr-scheduler-server", + ports: [ + { "container Port": 50006, name: "api" }, + { "container Port": 2379, name: "etcd-client" }, + { "container Port": 2330, name: "etcd-httpclient" }, + { "container Port": 2380, name: "etcd-peer" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": false, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/data/dapr-scheduler/", + name: "dapr-scheduler-data-dir", + "read Only": false + }, + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token" + } + ] + } + ], + "security Context": { "fs Group": 65532 }, + "service Account Name": "dapr-scheduler", + volumes: [ + { + "empty Dir": { medium: "Memory" }, + name: "dapr-scheduler-data-dir" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-scheduler-server", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "86d22457-aaae-4bd9-9b79-39d5dd3b7c93", + source: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + subType: "Annotation", + target: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 31 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: 622.8163964293032, posY: 266.6613299531768 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: 622.8163964293032, y: 266.6613299531768 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7a348b87-0a93-43b8-9920-a7eb6afe5941", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "7a348b87-0a93-43b8-9920-a7eb6afe5941": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sentry" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "sentry", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--trust-domain", + "cluster.local" + ], + command: ["/sentry"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/sentry:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sentry", + ports: [ + { "container Port": 50001 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/credentials", + name: "credentials", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-sentry", + volumes: [ + { + name: "credentials", + secret: { "secret Name": "dapr-trust-bundle" } + } + ] + } + } + }, + name: "dapr-sentry", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2e21ce73-db2a-4ee3-a531-02fd847689a6", + metadata: { port: 443, protocol: "TCP" }, + source: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + subType: "Network", + target: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "7a348b87-0a93-43b8-9920-a7eb6afe5941", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 32 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 278.1472037285166, posY: 390.59981455637393 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 278.1472037285166, y: 390.59981455637393 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "33edf12d-9592-4f7b-8600-b7fe2d4364fe", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "33edf12d-9592-4f7b-8600-b7fe2d4364fe": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sidecar-injector" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "injector", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--healthz-port", + "8080" + ], + command: ["/injector"], + env: [ + { + name: "DAPR_TRUST_ANCHORS_FILE", + value: "/var/run/secrets/dapr.io/tls/ca.crt" + }, + { + name: "DAPR_CONTROL_PLANE_TRUST_DOMAIN", + value: "cluster.local" + }, + { + name: "DAPR_SENTRY_ADDRESS", + value: "dapr-sentry.default.svc.cluster.local:443" + }, + { name: "KUBE_CLUSTER_DOMAIN", value: "cluster.local" }, + { + name: "SIDECAR_IMAGE", + value: "ghcr.io/dapr/daprd:1.14.0-rc.4" + }, + { + name: "SIDECAR_IMAGE_PULL_POLICY", + value: "IfNotPresent" + }, + { name: "SIDECAR_RUN_AS_NON_ROOT", value: "true" }, + { name: "ENABLE_K8S_DOWNWARD_APIS", value: "false" }, + { name: "SIDECAR_DROP_ALL_CAPABILITIES", value: "false" }, + { + name: "SIDECAR_READ_ONLY_ROOT_FILESYSTEM", + value: "true" + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "IGNORE_ENTRYPOINT_TOLERATIONS", + value: + '[{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"alibabacloud.com/eci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"azure.com/aci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"aws\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"huawei.com/cci\\"}]' + }, + { name: "ACTORS_ENABLED", value: "true" }, + { name: "ACTORS_SERVICE_NAME", value: "placement" }, + { + name: "ACTORS_SERVICE_ADDRESS", + value: "dapr-placement-server:50005" + } + ], + image: "ghcr.io/dapr/injector:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sidecar-injector", + ports: [ + { "container Port": 4000, name: "https", protocol: "TCP" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-injector", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "9c3e106c-cac0-4291-87c8-7b25a08bf260", + source: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + subType: "Network", + target: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "33edf12d-9592-4f7b-8600-b7fe2d4364fe", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 33 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 510.3627567646936, posY: 295.8678168751967 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 510.3627567646936, y: 295.8678168751967 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "3b832f26-e503-4418-a757-95d1cfbed4f8", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-operator", + services: { + "3b832f26-e503-4418-a757-95d1cfbed4f8": { + settings: { name: "dapr-operator" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "3b832f26-e503-4418-a757-95d1cfbed4f8", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 47 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "6c3ac91b-c3e2-4312-91b3-4e24841b152e", + position: { posX: 377.7879471782902, posY: 316.29051916135415 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + position: { x: 377.7879471782902, y: 316.29051916135415 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a2631701-195d-4d75-8d89-66527605a309", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sentry", + services: { + "a2631701-195d-4d75-8d89-66527605a309": { + settings: { name: "dapr-sentry" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "a2631701-195d-4d75-8d89-66527605a309", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 48 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "7a348b87-0a93-43b8-9920-a7eb6afe5941", + position: { posX: 278.1472037285166, posY: 381.59981455637393 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + position: { x: 278.1472037285166, y: 381.59981455637393 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sidecar-injector", + services: { + "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778": { + settings: { name: "dapr-sidecar-injector" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 49 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "33edf12d-9592-4f7b-8600-b7fe2d4364fe", + position: { posX: 510.3627567646936, posY: 286.8678168751967 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + position: { x: 510.3627567646936, y: 286.8678168751967 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "92f785f6-2b19-4218-8c6c-c37b2df57410", + metadata: { port: 443, protocol: "TCP" }, + source: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + subType: "Network", + target: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "1251d4b1-46c4-47e5-9c3b-56602a045c27", + source: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + subType: "Annotation", + target: "472662f9-4151-4987-8bb8-a43ead2f2e62" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "86d22457-aaae-4bd9-9b79-39d5dd3b7c93", + source: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + subType: "Annotation", + target: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "2e21ce73-db2a-4ee3-a531-02fd847689a6", + metadata: { port: 443, protocol: "TCP" }, + source: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + subType: "Network", + target: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "9c3e106c-cac0-4291-87c8-7b25a08bf260", + source: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + subType: "Network", + target: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "6c3ac91b-c3e2-4312-91b3-4e24841b152e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "18", + zIndex: "18", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "16", + zIndex: "16", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "787667bc-3cdf-4388-9f17-61df0e81a8d9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "29", + zIndex: "29", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "484a881e-7cbc-4b14-9962-cd7fc4b1775d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "35", + zIndex: "35", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "40fc8324-31d0-44a2-af15-b67e7ee01af4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "21", + zIndex: "21", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-api", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-api", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "e5a5d1c1-ba59-4f76-b892-68374a602dc6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "44", + zIndex: "44", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "472662f9-4151-4987-8bb8-a43ead2f2e62": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "40", + zIndex: "40", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "31", + zIndex: "31", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7a348b87-0a93-43b8-9920-a7eb6afe5941": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "32", + zIndex: "32", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "33edf12d-9592-4f7b-8600-b7fe2d4364fe": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "33", + zIndex: "33", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "3b832f26-e503-4418-a757-95d1cfbed4f8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "47", + zIndex: "47", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a2631701-195d-4d75-8d89-66527605a309": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "48", + zIndex: "48", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "49", + zIndex: "49", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "92f785f6-2b19-4218-8c6c-c37b2df57410": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "443/TCP", + targetLabel: "443/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1251d4b1-46c4-47e5-9c3b-56602a045c27": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(147,152,176)", + lineColor: "rgb(147,152,176)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "86d22457-aaae-4bd9-9b79-39d5dd3b7c93": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(147,152,176)", + lineColor: "rgb(147,152,176)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2e21ce73-db2a-4ee3-a531-02fd847689a6": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "443/TCP", + targetLabel: "443/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "9c3e106c-cac0-4291-87c8-7b25a08bf260": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-f6439589-1722-4fbc-b0e5-49f8d7c0ab17-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-dapr-roles.js b/static/embed-test/embedded-design-dapr-roles.js new file mode 100644 index 000000000000..2072ed8323b2 --- /dev/null +++ b/static/embed-test/embedded-design-dapr-roles.js @@ -0,0 +1,15960 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "b07fafde-3889-46d3-a342-a1efaaf724af", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "b07fafde-3889-46d3-a342-a1efaaf724af": { + namespace: "default", + settings: { + name: "dapr-scheduler", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "5671621a-4dca-4163-8c5b-c3b66b2c0859", + metadata: { binded_by: "c6e44479-39aa-4463-bad0-71b894a3d903" }, + source: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + subType: "Permission", + target: "b07fafde-3889-46d3-a342-a1efaaf724af" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "b07fafde-3889-46d3-a342-a1efaaf724af", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 11 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 374.03610347681416, posY: 30.553932982434183 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 374.03610347681416, y: 30.553932982434183 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd": { + settings: { + rules: [], + name: "dapr-scheduler", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "5671621a-4dca-4163-8c5b-c3b66b2c0859", + metadata: { binded_by: "c6e44479-39aa-4463-bad0-71b894a3d903" }, + source: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + subType: "Permission", + target: "b07fafde-3889-46d3-a342-a1efaaf724af" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 28 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 157.25827529112755, posY: -28.57153390678638 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 157.25827529112755, y: -28.57153390678638 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337": { + settings: { + rules: [ + { + "api Groups": ["authentication.k8s.io"], + resources: ["tokenreviews"], + verbs: ["create"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["list", "get", "watch"] + }, + { + "api Groups": [""], + resources: ["pods"], + verbs: ["list", "get", "watch"] + } + ], + name: "dapr-sentry", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1c6d4403-ee56-41fb-88b8-ddb2a67444c9", + metadata: { binded_by: "86bd9f7b-9c9f-4e7a-9842-3525a325d580" }, + source: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 37 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 191.6387458311328, posY: -108.28139959631633 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 191.6387458311328, y: -108.28139959631633 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "b55838ec-a9dc-48b4-8864-05a9bd33a0cd": { + namespace: "default", + settings: { + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "b1f21f3b-7824-43d7-87be-9c4db2cff585", + metadata: { binded_by: "4f2e583f-21c7-4c41-80e9-8029395028fe" }, + source: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "1c6d4403-ee56-41fb-88b8-ddb2a67444c9", + metadata: { binded_by: "86bd9f7b-9c9f-4e7a-9842-3525a325d580" }, + source: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 7 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 401.436281961315, posY: -85.02703223923953 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 401.436281961315, y: -85.02703223923953 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4f2e583f-21c7-4c41-80e9-8029395028fe", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "4f2e583f-21c7-4c41-80e9-8029395028fe": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-sentry" + }, + subjects: [ + { kind: "ServiceAccount", name: "dapr-sentry", namespace: "default" } + ], + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4f2e583f-21c7-4c41-80e9-8029395028fe", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1006 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: 305.692981116806, posY: -154.60013314304072 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: 305.692981116806, y: -154.60013314304072 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-injector" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-injector", + namespace: "default" + } + ], + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1003 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -100.38446779578265, posY: 38.26540575198202 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -100.38446779578265, y: 38.26540575198202 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator-admin", + services: { + "674e8273-f90a-45b8-aaa0-8cf23dc67ce4": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-operator-admin" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-operator", + namespace: "default" + } + ], + name: "dapr-operator-admin", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1005 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 210.3692700122395, posY: 92.64891366446741 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 210.3692700122395, y: 92.64891366446741 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": ["coordination.k8s.io"], + "resource Names": ["operator.dapr.io", "webhooks.dapr.io"], + resources: ["leases"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { + "api Groups": [""], + "resource Names": ["operator.dapr.io", "webhooks.dapr.io"], + resources: ["configmaps"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { + "api Groups": ["coordination.k8s.io"], + resources: ["leases"], + verbs: ["create"] + }, + { + "api Groups": [""], + resources: ["configmaps", "events"], + verbs: ["create"] + } + ], + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2d852a36-9434-4e3b-a471-9a106a6f28d1", + metadata: { binded_by: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9" }, + source: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: 92.29546789552991, posY: 253.52744464060152 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: 92.29546789552991, y: 253.52744464060152 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["secrets"], + verbs: ["get", "update", "delete"] + }, + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["configmaps"], + verbs: ["get", "update", "watch", "list"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["list", "get", "watch"] + } + ], + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "b1f21f3b-7824-43d7-87be-9c4db2cff585", + metadata: { binded_by: "4f2e583f-21c7-4c41-80e9-8029395028fe" }, + source: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 5 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: 209.5, posY: -224.5 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: 209.5, y: -224.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7127921c-3827-4290-b444-c8f5d3feca5f", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "secret-reader", + services: { + "7127921c-3827-4290-b444-c8f5d3feca5f": { + namespace: "default", + settings: { + rules: [{ "api Groups": [""], resources: ["secrets"], verbs: ["get"] }], + name: "secret-reader", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "7127921c-3827-4290-b444-c8f5d3feca5f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 17 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -123.02135697055762, posY: -34.66556807703557 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -123.02135697055762, y: -34.66556807703557 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c6e44479-39aa-4463-bad0-71b894a3d903", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "c6e44479-39aa-4463-bad0-71b894a3d903": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-scheduler" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-scheduler", + namespace: "default" + } + ], + name: "dapr-scheduler", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "c6e44479-39aa-4463-bad0-71b894a3d903", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1002 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 265.7673155159593, posY: 1.0239635603203645 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 265.7673155159593, y: 1.0239635603203645 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "86bd9f7b-9c9f-4e7a-9842-3525a325d580", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "86bd9f7b-9c9f-4e7a-9842-3525a325d580": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-sentry" + }, + subjects: [ + { kind: "ServiceAccount", name: "dapr-sentry", namespace: "default" } + ], + name: "dapr-sentry", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "86bd9f7b-9c9f-4e7a-9842-3525a325d580", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1007 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 296.64616062800906, posY: -96.64217330250379 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 296.64616062800906, y: -96.64217330250379 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "a40347a6-2990-411e-937a-702617b7000f", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "a40347a6-2990-411e-937a-702617b7000f": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["secrets"], + verbs: ["get"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["get"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets"], + verbs: ["get"] + } + ], + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0ba48862-cd1d-4509-b0d5-7084bf2f0d88", + metadata: { binded_by: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3" }, + source: "a40347a6-2990-411e-937a-702617b7000f", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "a40347a6-2990-411e-937a-702617b7000f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 13 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -208.1844660638462, posY: 78.76521328705286 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -208.1844660638462, y: 78.76521328705286 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "7c266d36-6aed-4a35-b8b4-dddacfaa33c6": { + namespace: "default", + settings: { + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0ba48862-cd1d-4509-b0d5-7084bf2f0d88", + metadata: { binded_by: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3" }, + source: "a40347a6-2990-411e-937a-702617b7000f", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "adea5377-20b1-47e6-a27f-ba161d4ca3e5", + metadata: { binded_by: "b9e4ec94-82be-46e2-9360-0333e86dc44a" }, + source: "2c12611c-0547-4d84-ab43-b3c341199b57", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 45 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 7.152721373778723, posY: -2.135665993860548 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 7.152721373778723, y: -2.135665993860548 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "bbbd5037-bc3e-4255-aa07-754479b3a169", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator-admin", + services: { + "bbbd5037-bc3e-4255-aa07-754479b3a169": { + settings: { + rules: [ + { + "api Groups": ["apiextensions.k8s.io"], + resources: ["customresourcedefinitions"], + verbs: ["get", "patch"] + }, + { + "api Groups": ["apps"], + resources: ["deployments", "deployments/finalizers"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["apps"], + resources: ["deployments/finalizers"], + verbs: ["update"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets", "statefulsets/finalizers"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets/finalizers"], + verbs: ["update"] + }, + { + "api Groups": [""], + resources: ["pods"], + verbs: ["get", "list", "delete", "watch"] + }, + { + "api Groups": [""], + resources: ["services", "services/finalizers"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { "api Groups": [""], resources: ["services"], verbs: ["delete"] }, + { + "api Groups": [""], + resources: ["secrets"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["dapr.io"], + resources: [ + "components", + "configurations", + "subscriptions", + "resiliencies", + "httpendpoints" + ], + verbs: ["get", "list", "watch"] + } + ], + name: "dapr-operator-admin", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1", + metadata: { binded_by: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4" }, + source: "bbbd5037-bc3e-4255-aa07-754479b3a169", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bbbd5037-bc3e-4255-aa07-754479b3a169", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 42 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 93.14788885436155, posY: 67.28200659681865 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 93.14788885436155, y: 67.28200659681865 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a": { + namespace: "default", + settings: { + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1", + metadata: { binded_by: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4" }, + source: "bbbd5037-bc3e-4255-aa07-754479b3a169", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "2d852a36-9434-4e3b-a471-9a106a6f28d1", + metadata: { binded_by: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9" }, + source: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 27 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 327.36033532281493, posY: 117.96597998943753 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 327.36033532281493, y: 117.96597998943753 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a8b21273-3bab-44d3-9a66-de1b98d25873", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "a8b21273-3bab-44d3-9a66-de1b98d25873": { + settings: { + rules: [], + name: "dapr-placement", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "822760e3-df49-46ab-b033-bbe026f4b6d3", + metadata: { binded_by: "7968b07e-1b76-433b-b1e3-d3f49b91d034" }, + source: "a8b21273-3bab-44d3-9a66-de1b98d25873", + subType: "Permission", + target: "58aad7ba-7469-43d7-b2a3-d2e026780207" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "a8b21273-3bab-44d3-9a66-de1b98d25873", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 52.6644417286831, posY: -242.90694361246318 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 52.6644417286831, y: -242.90694361246318 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f6840034-c6a6-49a5-9ae0-edcf7f123184", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-secret-reader", + services: { + "f6840034-c6a6-49a5-9ae0-edcf7f123184": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "secret-reader" + }, + subjects: [{ kind: "ServiceAccount", name: "default" }], + name: "dapr-secret-reader", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "f6840034-c6a6-49a5-9ae0-edcf7f123184", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 6 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -58.69891676767308, posY: -108.65496952865225 }, + whiteboardData: { style: {} } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -58.69891676767308, y: -108.65496952865225 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7968b07e-1b76-433b-b1e3-d3f49b91d034", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "7968b07e-1b76-433b-b1e3-d3f49b91d034": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-placement" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-placement", + namespace: "default" + } + ], + name: "dapr-placement", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "7968b07e-1b76-433b-b1e3-d3f49b91d034", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1002 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 53.104663587540514, posY: -156.49224201034573 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 53.108484307719166, y: -155.74224201034573 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "58aad7ba-7469-43d7-b2a3-d2e026780207", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "58aad7ba-7469-43d7-b2a3-d2e026780207": { + namespace: "default", + settings: { + "image Pull Secrets": [], + secrets: [], + name: "dapr-placement", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "822760e3-df49-46ab-b033-bbe026f4b6d3", + metadata: { binded_by: "7968b07e-1b76-433b-b1e3-d3f49b91d034" }, + source: "a8b21273-3bab-44d3-9a66-de1b98d25873", + subType: "Permission", + target: "58aad7ba-7469-43d7-b2a3-d2e026780207" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "58aad7ba-7469-43d7-b2a3-d2e026780207", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 10 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 53.551444297316095, posY: -68.79005062656128 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 53.551444297316095, y: -68.79005062656128 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b9e4ec94-82be-46e2-9360-0333e86dc44a", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "b9e4ec94-82be-46e2-9360-0333e86dc44a": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-injector" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-injector", + namespace: "default" + } + ], + name: "dapr-injector", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b9e4ec94-82be-46e2-9360-0333e86dc44a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1004 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: -20.61145101034368, posY: 101.04522547939919 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: -20.61145101034368, y: 101.04522547939919 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "2c12611c-0547-4d84-ab43-b3c341199b57", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "2c12611c-0547-4d84-ab43-b3c341199b57": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["serviceaccounts"], + verbs: ["get", "list"] + }, + { + "api Groups": ["admissionregistration.k8s.io"], + "resource Names": ["dapr-sidecar-injector"], + resources: ["mutatingwebhookconfigurations"], + verbs: ["patch"] + }, + { + "api Groups": ["dapr.io"], + resources: ["components"], + verbs: ["get", "list"] + } + ], + name: "dapr-injector", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "adea5377-20b1-47e6-a27f-ba161d4ca3e5", + metadata: { binded_by: "b9e4ec94-82be-46e2-9360-0333e86dc44a" }, + source: "2c12611c-0547-4d84-ab43-b3c341199b57", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "2c12611c-0547-4d84-ab43-b3c341199b57", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 20 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -48.44008191751654, posY: 204.46566624587678 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: -48.44008191751654, y: 204.46566624587678 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-operator" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-operator", + namespace: "default" + } + ], + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1001 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: 210.01118828592158, posY: 185.6410112350449 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: 210.01118828592158, y: 185.6410112350449 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "5671621a-4dca-4163-8c5b-c3b66b2c0859", + metadata: { binded_by: "c6e44479-39aa-4463-bad0-71b894a3d903" }, + source: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + subType: "Permission", + target: "b07fafde-3889-46d3-a342-a1efaaf724af" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "1c6d4403-ee56-41fb-88b8-ddb2a67444c9", + metadata: { binded_by: "86bd9f7b-9c9f-4e7a-9842-3525a325d580" }, + source: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "b1f21f3b-7824-43d7-87be-9c4db2cff585", + metadata: { binded_by: "4f2e583f-21c7-4c41-80e9-8029395028fe" }, + source: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "2d852a36-9434-4e3b-a471-9a106a6f28d1", + metadata: { binded_by: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9" }, + source: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "0ba48862-cd1d-4509-b0d5-7084bf2f0d88", + metadata: { binded_by: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3" }, + source: "a40347a6-2990-411e-937a-702617b7000f", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "adea5377-20b1-47e6-a27f-ba161d4ca3e5", + metadata: { binded_by: "b9e4ec94-82be-46e2-9360-0333e86dc44a" }, + source: "2c12611c-0547-4d84-ab43-b3c341199b57", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1", + metadata: { binded_by: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4" }, + source: "bbbd5037-bc3e-4255-aa07-754479b3a169", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "822760e3-df49-46ab-b033-bbe026f4b6d3", + metadata: { binded_by: "7968b07e-1b76-433b-b1e3-d3f49b91d034" }, + source: "a8b21273-3bab-44d3-9a66-de1b98d25873", + subType: "Permission", + target: "58aad7ba-7469-43d7-b2a3-d2e026780207" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "b07fafde-3889-46d3-a342-a1efaaf724af": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "11", + zIndex: "11", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "28", + zIndex: "28", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "37", + zIndex: "37", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b55838ec-a9dc-48b4-8864-05a9bd33a0cd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "7", + zIndex: "7", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4f2e583f-21c7-4c41-80e9-8029395028fe": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1000", + zIndex: "1000", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1001", + zIndex: "1001", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "674e8273-f90a-45b8-aaa0-8cf23dc67ce4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7127921c-3827-4290-b444-c8f5d3feca5f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "17", + zIndex: "17", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "secret-reader", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "secret-reader", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c6e44479-39aa-4463-bad0-71b894a3d903": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1003", + zIndex: "1003", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "86bd9f7b-9c9f-4e7a-9842-3525a325d580": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1004", + zIndex: "1004", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a40347a6-2990-411e-937a-702617b7000f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "13", + zIndex: "13", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7c266d36-6aed-4a35-b8b4-dddacfaa33c6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "45", + zIndex: "45", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bbbd5037-bc3e-4255-aa07-754479b3a169": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "42", + zIndex: "42", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "27", + zIndex: "27", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a8b21273-3bab-44d3-9a66-de1b98d25873": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f6840034-c6a6-49a5-9ae0-edcf7f123184": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "6", + zIndex: "6", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-secret-reader", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "25px", + width: "25px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-secret-reader", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7968b07e-1b76-433b-b1e3-d3f49b91d034": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1005", + zIndex: "1005", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "58aad7ba-7469-43d7-b2a3-d2e026780207": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "10", + zIndex: "10", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b9e4ec94-82be-46e2-9360-0333e86dc44a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1006", + zIndex: "1006", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2c12611c-0547-4d84-ab43-b3c341199b57": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "20", + zIndex: "20", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1007", + zIndex: "1007", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "5671621a-4dca-4163-8c5b-c3b66b2c0859": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1c6d4403-ee56-41fb-88b8-ddb2a67444c9": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "b1f21f3b-7824-43d7-87be-9c4db2cff585": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2d852a36-9434-4e3b-a471-9a106a6f28d1": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "0ba48862-cd1d-4509-b0d5-7084bf2f0d88": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "adea5377-20b1-47e6-a27f-ba161d4ca3e5": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "822760e3-df49-46ab-b033-bbe026f4b6d3": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-79476480-b3b3-4e47-8805-de2cd5735bb8-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-dapr.js b/static/embed-test/embedded-design-dapr.js new file mode 100644 index 000000000000..516cb38dd5da --- /dev/null +++ b/static/embed-test/embedded-design-dapr.js @@ -0,0 +1,32484 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "7968b07e-1b76-433b-b1e3-d3f49b91d034", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "7968b07e-1b76-433b-b1e3-d3f49b91d034": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-placement" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-placement", + namespace: "default" + } + ], + name: "dapr-placement", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "7968b07e-1b76-433b-b1e3-d3f49b91d034", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1002 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 96.40713718787255, posY: -145.13194510012988 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 96.40713718787255, y: -145.13194510012988 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server", + services: { + "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9": { + namespace: "default", + settings: { + spec: { + "pod Management Policy": "Parallel", + replicas: 1, + selector: { "match Labels": { app: "dapr-scheduler-server" } }, + "service Name": "dapr-scheduler-server", + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "scheduler", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--listen-address=0.0.0.0", + "--id", + "$(SCHEDULER_ID)", + "--replica-count", + "1", + "--initial-cluster", + "dapr-scheduler-server-0=http://dapr-scheduler-server-0.dapr-scheduler-server.default.svc.cluster.local:2380", + "--etcd-client-ports", + "dapr-scheduler-server-0=2379", + "--etcd-client-http-ports", + "dapr-scheduler-server-0=2330", + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--etcd-data-dir=/var/run/data/dapr-scheduler/default/$(SCHEDULER_ID)", + "--etcd-space-quota=2147483648", + "--etcd-compaction-mode=periodic", + "--etcd-compaction-retention=24h", + "--tls-enabled", + "--trust-domain=cluster.local", + "--trust-anchors-file=/var/run/secrets/dapr.io/tls/ca.crt", + "--sentry-address=dapr-sentry.default.svc.cluster.local:443", + "--mode=kubernetes" + ], + command: ["/scheduler"], + env: [ + { + name: "SCHEDULER_ID", + "value From": { + "field Ref": { "field Path": "metadata.name" } + } + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "POD_IP", + "value From": { + "field Ref": { "field Path": "status.podIP" } + } + } + ], + image: "ghcr.io/dapr/scheduler:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 10, + "period Seconds": 3 + }, + name: "dapr-scheduler-server", + ports: [ + { "container Port": 50006, name: "api" }, + { "container Port": 2379, name: "etcd-client" }, + { "container Port": 2330, name: "etcd-httpclient" }, + { "container Port": 2380, name: "etcd-peer" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": false, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/data/dapr-scheduler/", + name: "dapr-scheduler-data-dir", + "read Only": false + }, + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token" + } + ] + } + ], + "security Context": { "fs Group": 65532 }, + "service Account Name": "dapr-scheduler", + volumes: [ + { + "empty Dir": { medium: "Memory" }, + name: "dapr-scheduler-data-dir" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-scheduler-server", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "86d22457-aaae-4bd9-9b79-39d5dd3b7c93", + source: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + subType: "Annotation", + target: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 31 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: 66.1265172313176, posY: -221.94543072385792 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: 66.1265172313176, y: -221.94543072385792 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["secrets"], + verbs: ["get", "update", "delete"] + }, + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["configmaps"], + verbs: ["get", "update", "watch", "list"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["list", "get", "watch"] + } + ], + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "b1f21f3b-7824-43d7-87be-9c4db2cff585", + metadata: { binded_by: "4f2e583f-21c7-4c41-80e9-8029395028fe" }, + source: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 5 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: 209.5, posY: -224.5 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: 209.5, y: -224.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b9ada340-d9e8-4f11-b171-a42bc7c8d02a", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "resiliencies.dapr.io", + services: { + "b9ada340-d9e8-4f11-b171-a42bc7c8d02a": { + settings: { + spec: { + group: "dapr.io", + names: { + categories: ["dapr"], + kind: "Resiliency", + "list Kind": "ResiliencyList", + plural: "resiliencies", + singular: "resiliency" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + properties: { + policies: { + properties: { + "circuit Breakers": { + additionalProperties: { + properties: { + interval: { type: "string" }, + "max Requests": { type: "integer" }, + timeout: { type: "string" }, + trip: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + retries: { + additionalProperties: { + properties: { + duration: { type: "string" }, + "max Interval": { type: "string" }, + "max Retries": { type: "integer" }, + policy: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + timeouts: { + additionalProperties: { type: "string" }, + type: "object" + } + }, + type: "object" + }, + targets: { + properties: { + actors: { + additionalProperties: { + properties: { + "circuit Breaker": { type: "string" }, + "circuit Breaker Cache Size": { + type: "integer" + }, + "circuit Breaker Scope": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + apps: { + additionalProperties: { + properties: { + "circuit Breaker": { type: "string" }, + "circuit Breaker Cache Size": { + type: "integer" + }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + type: "object" + }, + components: { + additionalProperties: { + properties: { + inbound: { + properties: { + "circuit Breaker": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + }, + outbound: { + properties: { + "circuit Breaker": { type: "string" }, + retry: { type: "string" }, + timeout: { type: "string" } + }, + type: "object" + } + }, + type: "object" + }, + type: "object" + } + }, + type: "object" + } + }, + required: ["policies", "targets"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "resiliencies.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" }, + annotations: { "controller-gen.kubebuilder.io/version": "v0.5.0" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b9ada340-d9e8-4f11-b171-a42bc7c8d02a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 8 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -256.31500555848953, posY: 49.96597998943757 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -256.31500555848953, y: 49.96597998943757 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8d7926c8-20b1-4d68-b736-e8dbafd970cf", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "components.dapr.io", + services: { + "8d7926c8-20b1-4d68-b736-e8dbafd970cf": { + settings: { + spec: { + group: "dapr.io", + names: { + categories: ["all", "dapr"], + kind: "Component", + plural: "components", + singular: "component" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: "Component describes an Dapr component type.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + auth: { + description: + "Auth represents authentication details for the component.", + properties: { "secret Store": { type: "string" } }, + required: ["secretStore"], + type: "object" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: "ComponentSpec is the spec for a component.", + properties: { + "ignore Errors": { type: "boolean" }, + "init Timeout": { type: "string" }, + metadata: { + items: { + description: "NameValuePair is a name/value pair.", + properties: { + "env Ref": { + description: + "EnvRef is the name of an environmental variable to read the value from.", + type: "string" + }, + name: { + description: "Name of the property.", + type: "string" + }, + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + }, + type: { type: "string" }, + version: { type: "string" } + }, + required: ["metadata", "type", "version"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "components.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "8d7926c8-20b1-4d68-b736-e8dbafd970cf", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 26 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -315.2958425494156, posY: 132.89616848639693 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -315.2958425494156, y: 132.89616848639693 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a40347a6-2990-411e-937a-702617b7000f", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "a40347a6-2990-411e-937a-702617b7000f": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": [""], + "resource Names": ["dapr-trust-bundle"], + resources: ["secrets"], + verbs: ["get"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["get"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets"], + verbs: ["get"] + } + ], + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0ba48862-cd1d-4509-b0d5-7084bf2f0d88", + metadata: { binded_by: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3" }, + source: "a40347a6-2990-411e-937a-702617b7000f", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "a40347a6-2990-411e-937a-702617b7000f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 13 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -157.71141334429862, posY: 215.33935593994622 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -157.71141334429862, y: 215.33935593994622 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "887ad3d7-52fb-40d7-ab84-f74d1d2faee3", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-webhook", + services: { + "887ad3d7-52fb-40d7-ab84-f74d1d2faee3": { + namespace: "default", + settings: { + spec: { + ports: [{ port: 443, protocol: "TCP", "target Port": 19443 }], + selector: { app: "dapr-operator" }, + type: "ClusterIP" + }, + name: "dapr-webhook", + namespace: "default", + labels: { + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "887ad3d7-52fb-40d7-ab84-f74d1d2faee3", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 22 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -353.9504448800856, posY: -27.88195674435777 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -353.9504448800856, y: -27.88195674435777 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "7c266d36-6aed-4a35-b8b4-dddacfaa33c6": { + namespace: "default", + settings: { + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "0ba48862-cd1d-4509-b0d5-7084bf2f0d88", + metadata: { binded_by: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3" }, + source: "a40347a6-2990-411e-937a-702617b7000f", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "adea5377-20b1-47e6-a27f-ba161d4ca3e5", + metadata: { binded_by: "b9e4ec94-82be-46e2-9360-0333e86dc44a" }, + source: "2c12611c-0547-4d84-ab43-b3c341199b57", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 45 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 7.152721373778723, posY: -2.135665993860548 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 7.152721373778723, y: -2.135665993860548 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "484a881e-7cbc-4b14-9962-cd7fc4b1775d": { + namespace: "default", + settings: { + spec: { + ports: [ + { name: "grpc", port: 443, protocol: "TCP", "target Port": 50001 } + ], + selector: { app: "dapr-sentry" }, + type: "ClusterIP" + }, + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2e21ce73-db2a-4ee3-a531-02fd847689a6", + metadata: { port: 443, protocol: "TCP" }, + source: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + subType: "Network", + target: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 35 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -251.60439072502552, posY: -113.74048259443116 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -251.60439072502552, y: -113.74048259443116 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "472662f9-4151-4987-8bb8-a43ead2f2e62", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement-server", + services: { + "472662f9-4151-4987-8bb8-a43ead2f2e62": { + namespace: "default", + settings: { + spec: { + "pod Management Policy": "Parallel", + replicas: 1, + selector: { "match Labels": { app: "dapr-placement-server" } }, + "service Name": "dapr-placement-server", + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "placement", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--replicationFactor", + "100", + "--max-api-level", + "10", + "--min-api-level", + "0", + "--metrics-port", + "9090", + "--tls-enabled", + "--trust-domain=cluster.local", + "--trust-anchors-file=/var/run/secrets/dapr.io/tls/ca.crt", + "--sentry-address=dapr-sentry.default.svc.cluster.local:443", + "--mode=kubernetes" + ], + command: ["/placement"], + env: [ + { + name: "PLACEMENT_ID", + "value From": { + "field Ref": { "field Path": "metadata.name" } + } + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/placement:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 10, + "period Seconds": 3 + }, + name: "dapr-placement-server", + ports: [ + { "container Port": 50005, name: "api" }, + { "container Port": 8201, name: "raft-node" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As User": 0 + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token" + } + ] + } + ], + "service Account Name": "dapr-placement", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-placement-server", + namespace: "default", + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1251d4b1-46c4-47e5-9c3b-56602a045c27", + source: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + subType: "Annotation", + target: "472662f9-4151-4987-8bb8-a43ead2f2e62" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "472662f9-4151-4987-8bb8-a43ead2f2e62", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 40 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: -39.784893481977726, posY: -219.55930530697117 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: -39.784893481977726, y: -219.55930530697117 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "58aad7ba-7469-43d7-b2a3-d2e026780207", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "58aad7ba-7469-43d7-b2a3-d2e026780207": { + namespace: "default", + settings: { + name: "dapr-placement", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "822760e3-df49-46ab-b033-bbe026f4b6d3", + metadata: { binded_by: "7968b07e-1b76-433b-b1e3-d3f49b91d034" }, + source: "a8b21273-3bab-44d3-9a66-de1b98d25873", + subType: "Permission", + target: "58aad7ba-7469-43d7-b2a3-d2e026780207" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "58aad7ba-7469-43d7-b2a3-d2e026780207", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 10 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 50.23353439331825, posY: -68.37844325003593 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 50.23353439331825, y: -68.37844325003593 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337": { + settings: { + rules: [ + { + "api Groups": ["authentication.k8s.io"], + resources: ["tokenreviews"], + verbs: ["create"] + }, + { + "api Groups": ["dapr.io"], + resources: ["configurations"], + verbs: ["list", "get", "watch"] + }, + { + "api Groups": [""], + resources: ["pods"], + verbs: ["list", "get", "watch"] + } + ], + name: "dapr-sentry", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1c6d4403-ee56-41fb-88b8-ddb2a67444c9", + metadata: { binded_by: "86bd9f7b-9c9f-4e7a-9842-3525a325d580" }, + source: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 37 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 191.6387458311328, posY: -108.28139959631633 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 191.6387458311328, y: -108.28139959631633 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "b55838ec-a9dc-48b4-8864-05a9bd33a0cd": { + namespace: "default", + settings: { + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "b1f21f3b-7824-43d7-87be-9c4db2cff585", + metadata: { binded_by: "4f2e583f-21c7-4c41-80e9-8029395028fe" }, + source: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "1c6d4403-ee56-41fb-88b8-ddb2a67444c9", + metadata: { binded_by: "86bd9f7b-9c9f-4e7a-9842-3525a325d580" }, + source: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 7 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 401.436281961315, posY: -85.02703223923953 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 401.436281961315, y: -85.02703223923953 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "e5a5d1c1-ba59-4f76-b892-68374a602dc6": { + namespace: "default", + settings: { + spec: { + ports: [ + { + name: "https", + port: 443, + protocol: "TCP", + "target Port": "https" + } + ], + selector: { app: "dapr-sidecar-injector" }, + type: "ClusterIP" + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "9c3e106c-cac0-4291-87c8-7b25a08bf260", + source: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + subType: "Network", + target: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 44 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -456.38894378626816, posY: -118.15424237440806 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -456.38894378626816, y: -118.15424237440806 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c313c81e-678c-4a3a-b975-345915c8de9d", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "configurations.dapr.io", + services: { + "c313c81e-678c-4a3a-b975-345915c8de9d": { + settings: { + spec: { + group: "dapr.io", + names: { + kind: "Configuration", + "list Kind": "ConfigurationList", + plural: "configurations", + singular: "configuration" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "Configuration describes an Dapr configuration setting.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + spec: { + description: + "ConfigurationSpec is the spec for an configuration.", + properties: { + "access Control": { + description: + "AccessControlSpec is the spec object in ConfigurationSpec.", + properties: { + "default Action": { type: "string" }, + policies: { + items: { + description: + "AppPolicySpec defines the policy data structure for each app.", + properties: { + "app Id": { type: "string" }, + "default Action": { type: "string" }, + namespace: { type: "string" }, + operations: { + items: { + description: + "AppOperationAction defines the data structure for each app operation.", + properties: { + action: { type: "string" }, + "http Verb": { + items: { type: "string" }, + type: "array" + }, + name: { type: "string" } + }, + required: ["action", "name"], + type: "object" + }, + type: "array" + }, + "trust Domain": { type: "string" } + }, + required: ["appId"], + type: "object" + }, + type: "array" + }, + "trust Domain": { type: "string" } + }, + type: "object" + }, + api: { + description: + "APISpec describes the configuration for Dapr APIs.", + properties: { + allowed: { + description: + "List of allowed APIs. Can be used in conjunction with denied.", + items: { + description: + "APIAccessRule describes an access rule for allowing or denying a Dapr API.", + properties: { + name: { type: "string" }, + protocol: { type: "string" }, + version: { type: "string" } + }, + required: ["name", "version"], + type: "object" + }, + type: "array" + }, + denied: { + description: + "List of denied APIs. Can be used in conjunction with allowed.", + items: { + description: + "APIAccessRule describes an access rule for allowing or denying a Dapr API.", + properties: { + name: { type: "string" }, + protocol: { type: "string" }, + version: { type: "string" } + }, + required: ["name", "version"], + type: "object" + }, + type: "array" + } + }, + type: "object" + }, + "app Http Pipeline": { + description: + "PipelineSpec defines the middleware pipeline.", + properties: { + handlers: { + items: { + description: + "HandlerSpec defines a request handlers.", + properties: { + name: { type: "string" }, + selector: { + description: + "SelectorSpec selects target services to which the handler is to be applied.", + properties: { + fields: { + items: { + description: + "SelectorField defines a selector fields.", + properties: { + field: { type: "string" }, + value: { type: "string" } + }, + required: ["field", "value"], + type: "object" + }, + type: "array" + } + }, + required: ["fields"], + type: "object" + }, + type: { type: "string" } + }, + required: ["name", "type"], + type: "object" + }, + type: "array" + } + }, + required: ["handlers"], + type: "object" + }, + components: { + description: + "ComponentsSpec describes the configuration for Dapr components", + properties: { + deny: { + description: + "Denylist of component types that cannot be instantiated", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + features: { + items: { + description: + "FeatureSpec defines the features that are enabled/disabled.", + properties: { + enabled: { type: "boolean" }, + name: { type: "string" } + }, + required: ["enabled", "name"], + type: "object" + }, + type: "array" + }, + "http Pipeline": { + description: + "PipelineSpec defines the middleware pipeline.", + properties: { + handlers: { + items: { + description: + "HandlerSpec defines a request handlers.", + properties: { + name: { type: "string" }, + selector: { + description: + "SelectorSpec selects target services to which the handler is to be applied.", + properties: { + fields: { + items: { + description: + "SelectorField defines a selector fields.", + properties: { + field: { type: "string" }, + value: { type: "string" } + }, + required: ["field", "value"], + type: "object" + }, + type: "array" + } + }, + required: ["fields"], + type: "object" + }, + type: { type: "string" } + }, + required: ["name", "type"], + type: "object" + }, + type: "array" + } + }, + required: ["handlers"], + type: "object" + }, + logging: { + description: + "LoggingSpec defines the configuration for logging.", + properties: { + "api Logging": { + description: "Configure API logging.", + properties: { + enabled: { + description: + "Default value for enabling API logging. Sidecars can always override this by setting `--enable-api-logging` to true or false explicitly. The default value is false.", + type: "boolean" + }, + "obfuscate URLs": { + description: + "When enabled, obfuscates the values of URLs in HTTP API logs, logging the route name rather than the full path being invoked, which could contain PII. Default: false. This option has no effect if API logging is disabled.", + type: "boolean" + }, + "omit Health Checks": { + description: + "If true, health checks are not reported in API logs. Default: false. This option has no effect if API logging is disabled.", + type: "boolean" + } + }, + type: "object" + } + }, + type: "object" + }, + mTLS: { + description: "MTLSSpec defines mTLS configuration.", + properties: { + "allowed Clock Skew": { type: "string" }, + "control Plane Trust Domain": { type: "string" }, + enabled: { type: "boolean" }, + "sentry Address": { type: "string" }, + "token Validators": { + description: + 'Additional token validators to use. When Dapr is running in Kubernetes mode, this is in addition to the built-in "kubernetes" validator. In self-hosted mode, enabling a custom validator will disable the built-in "insecure" validator.', + items: { + description: + "ValidatorSpec contains additional token validators to use.", + properties: { + name: { + description: "Name of the validator", + enum: ["jwks"], + type: "string" + }, + options: { + description: + "Options for the validator, if any", + type: "object", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + }, + "workload Cert TTL": { type: "string" } + }, + required: ["enabled"], + type: "object" + }, + metric: { + default: { enabled: true }, + description: + "MetricSpec defines metrics configuration.", + properties: { + enabled: { type: "boolean" }, + http: { + description: + "MetricHTTP defines configuration for metrics for the HTTP server", + properties: { + "exclude Verbs": { + description: + "If true (default is false) HTTP verbs (e.g., GET, POST) are excluded from the metrics.", + type: "boolean" + }, + "increased Cardinality": { + description: + "If true, metrics for the HTTP server are collected with increased cardinality. The default is true in Dapr 1.13, but will be changed to false in 1.15+", + type: "boolean" + }, + "path Matching": { + description: + "PathMatching defines the path matching configuration for HTTP server metrics.", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + rules: { + items: { + description: + "MetricsRule defines configuration options for a metric.", + properties: { + labels: { + items: { + description: + "MetricsLabel defines an object that allows to set regex expressions for a label.", + properties: { + name: { type: "string" }, + regex: { + additionalProperties: { + type: "string" + }, + type: "object" + } + }, + required: ["name", "regex"], + type: "object" + }, + type: "array" + }, + name: { type: "string" } + }, + required: ["labels", "name"], + type: "object" + }, + type: "array" + } + }, + required: ["enabled"], + type: "object" + }, + metrics: { + default: { enabled: true }, + description: + "MetricSpec defines metrics configuration.", + properties: { + enabled: { type: "boolean" }, + http: { + description: + "MetricHTTP defines configuration for metrics for the HTTP server", + properties: { + "exclude Verbs": { + description: + "If true (default is false) HTTP verbs (e.g., GET, POST) are excluded from the metrics.", + type: "boolean" + }, + "increased Cardinality": { + description: + "If true, metrics for the HTTP server are collected with increased cardinality. The default is true in Dapr 1.13, but will be changed to false in 1.14+", + type: "boolean" + }, + "path Matching": { + description: + "PathMatching defines the path matching configuration for HTTP server metrics.", + items: { type: "string" }, + type: "array" + } + }, + type: "object" + }, + "latency Distribution Buckets": { + description: + "If a list of integers is specified, use these values for latency distribution buckets instead of the default values.", + items: { type: "integer" }, + type: "array" + }, + rules: { + items: { + description: + "MetricsRule defines configuration options for a metric.", + properties: { + labels: { + items: { + description: + "MetricsLabel defines an object that allows to set regex expressions for a label.", + properties: { + name: { type: "string" }, + regex: { + additionalProperties: { + type: "string" + }, + type: "object" + } + }, + required: ["name", "regex"], + type: "object" + }, + type: "array" + }, + name: { type: "string" } + }, + required: ["labels", "name"], + type: "object" + }, + type: "array" + } + }, + required: ["enabled"], + type: "object" + }, + "name Resolution": { + description: + "NameResolutionSpec is the spec for name resolution configuration.", + properties: { + component: { type: "string" }, + configuration: { + description: + "DynamicValue is a dynamic value struct for the component.metadata pair value.", + type: "object", + "x-kubernetes-preserve-unknown-fields": true + }, + version: { type: "string" } + }, + required: ["component", "configuration", "version"], + type: "object" + }, + secrets: { + description: + "SecretsSpec is the spec for secrets configuration.", + properties: { + scopes: { + items: { + description: + "SecretsScope defines the scope for secrets.", + properties: { + "allowed Secrets": { + items: { type: "string" }, + type: "array" + }, + "default Access": { type: "string" }, + "denied Secrets": { + items: { type: "string" }, + type: "array" + }, + "store Name": { type: "string" } + }, + required: ["storeName"], + type: "object" + }, + type: "array" + } + }, + required: ["scopes"], + type: "object" + }, + tracing: { + description: + "TracingSpec defines distributed tracing configuration.", + properties: { + otel: { + description: + "OtelSpec defines Otel exporter configurations.", + properties: { + "endpoint Address": { type: "string" }, + "is Secure": { type: "boolean" }, + protocol: { type: "string" } + }, + required: [ + "endpointAddress", + "isSecure", + "protocol" + ], + type: "object" + }, + "sampling Rate": { type: "string" }, + stdout: { type: "boolean" }, + zipkin: { + description: + "ZipkinSpec defines Zipkin trace configurations.", + properties: { + "endpoint Address": { type: "string" } + }, + required: ["endpointAddress"], + type: "object" + } + }, + required: ["samplingRate"], + type: "object" + }, + wasm: { + description: + "WasmSpec describes the security profile for all Dapr Wasm components.", + properties: { "strict Sandbox": { type: "boolean" } }, + type: "object" + } + }, + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "configurations.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" }, + annotations: { "controller-gen.kubebuilder.io/version": "v0.11.3" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "c313c81e-678c-4a3a-b975-345915c8de9d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 39 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -465.7323800570271, posY: 49.71379708298537 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -465.7323800570271, y: 49.71379708298537 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2c12611c-0547-4d84-ab43-b3c341199b57", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "2c12611c-0547-4d84-ab43-b3c341199b57": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["serviceaccounts"], + verbs: ["get", "list"] + }, + { + "api Groups": ["admissionregistration.k8s.io"], + "resource Names": ["dapr-sidecar-injector"], + resources: ["mutatingwebhookconfigurations"], + verbs: ["patch"] + }, + { + "api Groups": ["dapr.io"], + resources: ["components"], + verbs: ["get", "list"] + } + ], + name: "dapr-injector", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "adea5377-20b1-47e6-a27f-ba161d4ca3e5", + metadata: { binded_by: "b9e4ec94-82be-46e2-9360-0333e86dc44a" }, + source: "2c12611c-0547-4d84-ab43-b3c341199b57", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "2c12611c-0547-4d84-ab43-b3c341199b57", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 20 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 40.630011116979134, posY: 247.02137736235807 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 40.630011116979134, y: 247.02137736235807 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-injector" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-injector", + namespace: "default" + } + ], + name: "dapr-injector", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 34 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -75.10621723448139, posY: 106.37346795861619 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -75.10621723448139, y: 106.37346795861619 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "de4b475b-614b-4c03-b5a1-62d02d83807d", + type: "ConfigMap", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-trust-bundle", + services: { + "de4b475b-614b-4c03-b5a1-62d02d83807d": { + namespace: "default", + settings: { + name: "dapr-trust-bundle", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "de4b475b-614b-4c03-b5a1-62d02d83807d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 38 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/configmap-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/configmap-white.svg" + }, + position: { posX: -254.7176815576313, posY: -31.56937291556636 }, + whiteboardData: { style: {} } + } + }, + type: "ConfigMap" + } + } + } + }, + position: { x: -254.7176815576313, y: -31.56937291556636 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7127921c-3827-4290-b444-c8f5d3feca5f", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "secret-reader", + services: { + "7127921c-3827-4290-b444-c8f5d3feca5f": { + namespace: "default", + settings: { + rules: [{ "api Groups": [""], resources: ["secrets"], verbs: ["get"] }], + name: "secret-reader", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "7127921c-3827-4290-b444-c8f5d3feca5f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 17 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: -194.61736846877474, posY: 130.8966070738711 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: -194.61736846877474, y: 130.8966070738711 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7a348b87-0a93-43b8-9920-a7eb6afe5941", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "7a348b87-0a93-43b8-9920-a7eb6afe5941": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sentry" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "sentry", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--trust-domain", + "cluster.local" + ], + command: ["/sentry"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/sentry:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sentry", + ports: [ + { "container Port": 50001 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/credentials", + name: "credentials", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-sentry", + volumes: [ + { + name: "credentials", + secret: { "secret Name": "dapr-trust-bundle" } + } + ] + } + } + }, + name: "dapr-sentry", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2e21ce73-db2a-4ee3-a531-02fd847689a6", + metadata: { port: 443, protocol: "TCP" }, + source: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + subType: "Network", + target: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "7a348b87-0a93-43b8-9920-a7eb6afe5941", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 32 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -145.08186906469734, posY: -228.47924925462706 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -145.08186906469734, y: -228.47924925462706 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "03182acd-bf30-4204-afab-e8a2305ee6c0", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "httpendpoints.dapr.io", + services: { + "03182acd-bf30-4204-afab-e8a2305ee6c0": { + settings: { + spec: { + group: "dapr.io", + names: { + kind: "HTTPEndpoint", + "list Kind": "HTTPEndpointList", + plural: "httpendpoints", + singular: "httpendpoint" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "HTTPEndpoint describes a Dapr HTTPEndpoint type for external service invocation. This endpoint can be external to Dapr, or external to the environment.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + auth: { + description: + "Auth represents authentication details for the component.", + properties: { "secret Store": { type: "string" } }, + required: ["secretStore"], + type: "object" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "HTTPEndpointSpec describes an access specification for allowing external service invocations.", + properties: { + "base Url": { type: "string" }, + "client TLS": { + description: + "TLS describes how to build client or server TLS configurations.", + properties: { + certificate: { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + }, + "private Key": { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + }, + renegotiation: { + default: "Never", + description: + "Renegotiation sets the underlying tls negotiation strategy for an http channel.", + enum: ["Never", "OnceAsClient", "FreelyAsClient"], + type: "string" + }, + "root CA": { + description: + "TLSDocument describes and in-line or pointer to a document to build a TLS configuration.", + properties: { + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + type: "object" + } + }, + type: "object" + }, + headers: { + items: { + description: "NameValuePair is a name/value pair.", + properties: { + "env Ref": { + description: + "EnvRef is the name of an environmental variable to read the value from.", + type: "string" + }, + name: { + description: "Name of the property.", + type: "string" + }, + "secret Key Ref": { + description: + "SecretKeyRef is the reference of a value in a secret store component.", + properties: { + key: { + description: "Field in the secret.", + type: "string" + }, + name: { + description: "Secret name.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + value: { + description: + "Value of the property, in plaintext.", + "x-kubernetes-preserve-unknown-fields": true + } + }, + required: ["name"], + type: "object" + }, + type: "array" + } + }, + required: ["baseUrl"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "httpendpoints.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "03182acd-bf30-4204-afab-e8a2305ee6c0", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 24 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -406.36730070740856, posY: 201.59435809591034 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -406.36730070740856, y: 201.59435809591034 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-api", + services: { + "40fc8324-31d0-44a2-af15-b67e7ee01af4": { + namespace: "default", + settings: { + spec: { + ports: [ + { name: "grpc", port: 443, protocol: "TCP", "target Port": 6500 }, + { name: "legacy", port: 80, protocol: "TCP", "target Port": 6500 } + ], + selector: { app: "dapr-operator" }, + type: "ClusterIP" + }, + name: "dapr-api", + namespace: "default", + labels: { + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "92f785f6-2b19-4218-8c6c-c37b2df57410", + metadata: { port: 443, protocol: "TCP" }, + source: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + subType: "Network", + target: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 21 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -351.8618671949036, posY: -112.88538886918816 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -351.8618671949036, y: -112.88538886918816 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + type: "Role", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a": { + namespace: "default", + settings: { + rules: [ + { + "api Groups": ["coordination.k8s.io"], + "resource Names": ["operator.dapr.io", "webhooks.dapr.io"], + resources: ["leases"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { + "api Groups": [""], + "resource Names": ["operator.dapr.io", "webhooks.dapr.io"], + resources: ["configmaps"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { + "api Groups": ["coordination.k8s.io"], + resources: ["leases"], + verbs: ["create"] + }, + { + "api Groups": [""], + resources: ["configmaps", "events"], + verbs: ["create"] + } + ], + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "2d852a36-9434-4e3b-a471-9a106a6f28d1", + metadata: { binded_by: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9" }, + source: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: 123.964834307795, posY: 238.68242913485227 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + } + }, + position: { x: 123.964834307795, y: 238.68242913485227 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c6e44479-39aa-4463-bad0-71b894a3d903", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "c6e44479-39aa-4463-bad0-71b894a3d903": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-scheduler" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-scheduler", + namespace: "default" + } + ], + name: "dapr-scheduler", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "c6e44479-39aa-4463-bad0-71b894a3d903", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1004 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 265.7673155159593, posY: 1.0239635603203645 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 265.7673155159593, y: 1.0239635603203645 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "f6840034-c6a6-49a5-9ae0-edcf7f123184", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-secret-reader", + services: { + "f6840034-c6a6-49a5-9ae0-edcf7f123184": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "secret-reader" + }, + subjects: [{ kind: "ServiceAccount", name: "default" }], + name: "dapr-secret-reader", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "f6840034-c6a6-49a5-9ae0-edcf7f123184", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 6 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: -139.202877918207, posY: 40.363001111697905 }, + whiteboardData: { style: {} } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: -139.202877918207, y: 40.363001111697905 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4f2e583f-21c7-4c41-80e9-8029395028fe", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "4f2e583f-21c7-4c41-80e9-8029395028fe": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-sentry" + }, + subjects: [ + { kind: "ServiceAccount", name: "dapr-sentry", namespace: "default" } + ], + name: "dapr-sentry", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4f2e583f-21c7-4c41-80e9-8029395028fe", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1005 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: 305.692981116806, posY: -154.60013314304072 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: 305.692981116806, y: -154.60013314304072 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "4a33347b-9159-4462-a7a4-01bbe652aa8d", + type: "Configuration", + apiVersion: "dapr.io/v1alpha1", + meshType: "dapr", + model: "dapr", + config: { + name: "daprsystem", + services: { + "4a33347b-9159-4462-a7a4-01bbe652aa8d": { + namespace: "default", + settings: { + spec: { + mTLS: { + "allowed Clock Skew": "15m", + "control Plane Trust Domain": "cluster.local", + enabled: true, + "sentry Address": "dapr-sentry.default.svc.cluster.local:443", + "workload Cert TTL": "24h" + } + }, + name: "daprsystem", + namespace: "default", + labels: { + "app.kubernetes.io/component": "config", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4a33347b-9159-4462-a7a4-01bbe652aa8d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos", + model: "dapr", + modelDisplayName: "Dapr", + primaryColor: "#0d2192", + secondaryColor: "#5266D7", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 19 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/dapr/color/component-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/dapr/white/component-white.svg" + }, + position: { posX: -456.4025170252113, posY: 128.55490745365682 }, + whiteboardData: { style: {} } + } + }, + type: "Configuration" + } + } + } + }, + position: { x: -456.4025170252113, y: 128.55490745365682 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b9e4ec94-82be-46e2-9360-0333e86dc44a", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-injector", + services: { + "b9e4ec94-82be-46e2-9360-0333e86dc44a": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-injector" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-injector", + namespace: "default" + } + ], + name: "dapr-injector", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b9e4ec94-82be-46e2-9360-0333e86dc44a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1007 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 23.87661907795909, posY: 122.3330988711856 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 23.87661907795909, y: 122.3330988711856 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "bbbd5037-bc3e-4255-aa07-754479b3a169", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator-admin", + services: { + "bbbd5037-bc3e-4255-aa07-754479b3a169": { + settings: { + rules: [ + { + "api Groups": ["apiextensions.k8s.io"], + resources: ["customresourcedefinitions"], + verbs: ["get", "patch"] + }, + { + "api Groups": ["apps"], + resources: ["deployments", "deployments/finalizers"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["apps"], + resources: ["deployments/finalizers"], + verbs: ["update"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets", "statefulsets/finalizers"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["apps"], + resources: ["statefulsets/finalizers"], + verbs: ["update"] + }, + { + "api Groups": [""], + resources: ["pods"], + verbs: ["get", "list", "delete", "watch"] + }, + { + "api Groups": [""], + resources: ["services", "services/finalizers"], + verbs: ["get", "list", "watch", "update", "create"] + }, + { "api Groups": [""], resources: ["services"], verbs: ["delete"] }, + { + "api Groups": [""], + resources: ["secrets"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["dapr.io"], + resources: [ + "components", + "configurations", + "subscriptions", + "resiliencies", + "httpendpoints" + ], + verbs: ["get", "list", "watch"] + } + ], + name: "dapr-operator-admin", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1", + metadata: { binded_by: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4" }, + source: "bbbd5037-bc3e-4255-aa07-754479b3a169", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "bbbd5037-bc3e-4255-aa07-754479b3a169", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 42 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 93.14788885436155, posY: 67.28200659681865 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 93.14788885436155, y: 67.28200659681865 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server", + services: { + "787667bc-3cdf-4388-9f17-61df0e81a8d9": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [ + { name: "api", port: 50006 }, + { name: "etcd-client", port: 2379 }, + { name: "etcd-httpclient", port: 2330 }, + { name: "etcd-peer", port: 2380 } + ], + "publish Not Ready Addresses": true, + selector: { app: "dapr-scheduler-server" } + }, + name: "dapr-scheduler-server", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "86d22457-aaae-4bd9-9b79-39d5dd3b7c93", + source: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + subType: "Annotation", + target: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 29 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -30.586842343873773, posY: -115.77399777660416 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -30.586842343873773, y: -115.77399777660416 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a8b21273-3bab-44d3-9a66-de1b98d25873", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement", + services: { + "a8b21273-3bab-44d3-9a66-de1b98d25873": { + settings: { + rules: [], + name: "dapr-placement", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "822760e3-df49-46ab-b033-bbe026f4b6d3", + metadata: { binded_by: "7968b07e-1b76-433b-b1e3-d3f49b91d034" }, + source: "a8b21273-3bab-44d3-9a66-de1b98d25873", + subType: "Permission", + target: "58aad7ba-7469-43d7-b2a3-d2e026780207" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "a8b21273-3bab-44d3-9a66-de1b98d25873", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 142.72420246356214, posY: -222.1239219044142 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 142.72420246356214, y: -222.1239219044142 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-placement-server", + services: { + "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [ + { name: "api", port: 50005 }, + { name: "raft-node", port: 8201 } + ], + "publish Not Ready Addresses": true, + selector: { app: "dapr-placement-server" } + }, + name: "dapr-placement-server", + namespace: "default", + labels: { + app: "dapr-placement-server", + "app.kubernetes.io/component": "placement", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + }, + annotations: { + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "1251d4b1-46c4-47e5-9c3b-56602a045c27", + source: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + subType: "Annotation", + target: "472662f9-4151-4987-8bb8-a43ead2f2e62" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(147,152,176)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 16 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -140.47512875198046, posY: -115.77399777660419 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -140.47512875198046, y: -115.77399777660419 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "33edf12d-9592-4f7b-8600-b7fe2d4364fe", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "33edf12d-9592-4f7b-8600-b7fe2d4364fe": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-sidecar-injector" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "injector", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--log-level", + "info", + "--enable-metrics", + "--metrics-port", + "9090", + "--healthz-port", + "8080" + ], + command: ["/injector"], + env: [ + { + name: "DAPR_TRUST_ANCHORS_FILE", + value: "/var/run/secrets/dapr.io/tls/ca.crt" + }, + { + name: "DAPR_CONTROL_PLANE_TRUST_DOMAIN", + value: "cluster.local" + }, + { + name: "DAPR_SENTRY_ADDRESS", + value: "dapr-sentry.default.svc.cluster.local:443" + }, + { name: "KUBE_CLUSTER_DOMAIN", value: "cluster.local" }, + { + name: "SIDECAR_IMAGE", + value: "ghcr.io/dapr/daprd:1.14.0-rc.4" + }, + { + name: "SIDECAR_IMAGE_PULL_POLICY", + value: "IfNotPresent" + }, + { name: "SIDECAR_RUN_AS_NON_ROOT", value: "true" }, + { name: "ENABLE_K8S_DOWNWARD_APIS", value: "false" }, + { name: "SIDECAR_DROP_ALL_CAPABILITIES", value: "false" }, + { + name: "SIDECAR_READ_ONLY_ROOT_FILESYSTEM", + value: "true" + }, + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "IGNORE_ENTRYPOINT_TOLERATIONS", + value: + '[{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"alibabacloud.com/eci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"azure.com/aci\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"aws\\"},{\\"effect\\":\\"NoSchedule\\",\\"key\\":\\"huawei.com/cci\\"}]' + }, + { name: "ACTORS_ENABLED", value: "true" }, + { name: "ACTORS_SERVICE_NAME", value: "placement" }, + { + name: "ACTORS_SERVICE_ADDRESS", + value: "dapr-placement-server:50005" + } + ], + image: "ghcr.io/dapr/injector:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-sidecar-injector", + ports: [ + { "container Port": 4000, name: "https", protocol: "TCP" }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + } + ] + } + ], + "service Account Name": "dapr-injector", + volumes: [ + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-sidecar-injector", + namespace: "default", + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + animation: "marching-ants", + id: "9c3e106c-cac0-4291-87c8-7b25a08bf260", + source: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + subType: "Network", + target: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dashed", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "33edf12d-9592-4f7b-8600-b7fe2d4364fe", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 33 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -372.3165815481291, posY: -232.1157188604219 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -372.3165815481291, y: -232.1157188604219 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator-admin", + services: { + "674e8273-f90a-45b8-aaa0-8cf23dc67ce4": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-operator-admin" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-operator", + namespace: "default" + } + ], + name: "dapr-operator-admin", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1001 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 210.3692700122395, posY: 92.64891366446741 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 210.3692700122395, y: 92.64891366446741 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9", + type: "RoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9": { + namespace: "default", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "dapr-operator" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "dapr-operator", + namespace: "default" + } + ], + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1003 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: 225.85304213259712, posY: 178.2111670025994 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + } + }, + position: { x: 225.85304213259712, y: 178.2111670025994 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "6c3ac91b-c3e2-4312-91b3-4e24841b152e", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "6c3ac91b-c3e2-4312-91b3-4e24841b152e": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "dapr-operator" } }, + template: { + metadata: { + annotations: { + "dapr.io/control-plane": "operator", + "prometheus.io/path": "/", + "prometheus.io/port": "9090", + "prometheus.io/scrape": "true" + }, + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + spec: { + affinity: { + "node Affinity": { + "required During Scheduling Ignored During Execution": { + "node Selector Terms": [ + { + "match Expressions": [ + { + key: "kubernetes.io/os", + operator: "In", + values: ["linux"] + } + ] + } + ] + } + } + }, + containers: [ + { + args: [ + "--watch-interval", + "0", + "--max-pod-restarts-per-minute", + "20", + "--log-level", + "info", + "--trust-anchors-file", + "/var/run/secrets/dapr.io/tls/ca.crt", + "--enable-metrics", + "--metrics-port", + "9090" + ], + command: ["/operator"], + env: [ + { + name: "NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + } + ], + image: "ghcr.io/dapr/operator:1.14.0-rc.4", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + name: "dapr-operator", + ports: [ + { "container Port": 6500 }, + { "container Port": 9090, name: "metrics", protocol: "TCP" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { path: "/healthz", port: 8080 }, + "initial Delay Seconds": 3, + "period Seconds": 3 + }, + resources: {}, + "security Context": { + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Non Root": true + }, + "volume Mounts": [ + { + "mount Path": "/var/run/secrets/dapr.io/tls", + name: "dapr-trust-bundle", + "read Only": true + }, + { + "mount Path": "/var/run/secrets/dapr.io/sentrytoken", + name: "dapr-identity-token", + "read Only": true + }, + { "mount Path": "/tmp", name: "dapr-operator-tmp" } + ] + } + ], + "service Account Name": "dapr-operator", + volumes: [ + { + "empty Dir": { medium: "Memory", "size Limit": "2Mi" }, + name: "dapr-operator-tmp" + }, + { + "config Map": { name: "dapr-trust-bundle" }, + name: "dapr-trust-bundle" + }, + { + name: "dapr-identity-token", + projected: { + sources: [ + { + "service Account Token": { + audience: + "spiffe://cluster.local/ns/default/dapr-sentry", + "expiration Seconds": 600, + path: "token" + } + } + ] + } + } + ] + } + } + }, + name: "dapr-operator", + namespace: "default", + labels: { + app: "dapr-operator", + "app.kubernetes.io/component": "operator", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "92f785f6-2b19-4218-8c6c-c37b2df57410", + metadata: { port: 443, protocol: "TCP" }, + source: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + subType: "Network", + target: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "6c3ac91b-c3e2-4312-91b3-4e24841b152e", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 18 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -248.29693297260172, posY: -230.31440895538674 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -248.29693297260172, y: -230.31440895538674 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "86bd9f7b-9c9f-4e7a-9842-3525a325d580", + type: "ClusterRoleBinding", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sentry", + services: { + "86bd9f7b-9c9f-4e7a-9842-3525a325d580": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "dapr-sentry" + }, + subjects: [ + { kind: "ServiceAccount", name: "dapr-sentry", namespace: "default" } + ], + name: "dapr-sentry", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "86bd9f7b-9c9f-4e7a-9842-3525a325d580", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1006 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 296.64616062800906, posY: -96.64217330250379 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + } + }, + position: { x: 296.64616062800906, y: -96.64217330250379 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "20b13c8d-ec5d-4c40-bbbc-f5cb4ecbc728", + type: "MutatingWebhookConfiguration", + apiVersion: "admissionregistration.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-sidecar-injector", + services: { + "20b13c8d-ec5d-4c40-bbbc-f5cb4ecbc728": { + settings: { + webhooks: [ + { + "admission Review Versions": ["v1", "v1beta1"], + "client Config": { + service: { + name: "dapr-sidecar-injector", + namespace: "default", + path: "/mutate" + } + }, + "failure Policy": "Ignore", + name: "sidecar-injector.dapr.io", + "reinvocation Policy": "IfNeeded", + rules: [ + { + "api Groups": [""], + "api Versions": ["v1"], + operations: ["CREATE"], + resources: ["pods"] + } + ], + "side Effects": "None" + } + ], + name: "dapr-sidecar-injector", + labels: { + app: "dapr-sidecar-injector", + "app.kubernetes.io/component": "sidecar-injector", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "20b13c8d-ec5d-4c40-bbbc-f5cb4ecbc728", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-hexagon", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 12 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/mutatingwebhookconfiguration-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/mutatingwebhookconfiguration-white.svg" + }, + position: { posX: -463.0702010123448, posY: -24.97163486631902 }, + whiteboardData: { style: {} } + } + }, + type: "MutatingWebhookConfiguration" + } + } + } + }, + position: { x: -463.0702010123448, y: -24.97163486631902 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a083d547-a923-4202-b86a-b89bede00e07", + type: "CustomResourceDefinition", + apiVersion: "apiextensions.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "subscriptions.dapr.io", + services: { + "a083d547-a923-4202-b86a-b89bede00e07": { + settings: { + spec: { + conversion: { + strategy: "Webhook", + webhook: { + "client Config": { + service: { + name: "dapr-webhook", + namespace: "replaceme", + path: "/convert" + } + }, + "conversion Review Versions": ["v1", "v2alpha1"] + } + }, + group: "dapr.io", + names: { + categories: ["all", "dapr"], + kind: "Subscription", + "list Kind": "SubscriptionList", + plural: "subscriptions", + singular: "subscription" + }, + scope: "Namespaced", + versions: [ + { + name: "v1alpha1", + schema: { + "open APIV3Schema": { + description: + "Subscription describes an pub/sub event subscription.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "SubscriptionSpec is the spec for an event subscription.", + properties: { + "bulk Subscribe": { + description: "Represents bulk subscribe properties", + properties: { + enabled: { type: "boolean" }, + "max Await Duration Ms": { type: "integer" }, + "max Messages Count": { type: "integer" } + }, + required: ["enabled"], + type: "object" + }, + "dead Letter Topic": { type: "string" }, + metadata: { + additionalProperties: { type: "string" }, + type: "object" + }, + pubsubname: { type: "string" }, + route: { type: "string" }, + topic: { type: "string" } + }, + required: ["pubsubname", "route", "topic"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: false + }, + { + name: "v2alpha1", + schema: { + "open APIV3Schema": { + description: + "Subscription describes an pub/sub event subscription.", + properties: { + "api Version": { + description: + "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + type: "string" + }, + kind: { + description: + "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + type: "string" + }, + metadata: { type: "object" }, + scopes: { items: { type: "string" }, type: "array" }, + spec: { + description: + "SubscriptionSpec is the spec for an event subscription.", + properties: { + "bulk Subscribe": { + description: "Represents bulk subscribe properties", + properties: { + enabled: { type: "boolean" }, + "max Await Duration Ms": { type: "integer" }, + "max Messages Count": { type: "integer" } + }, + required: ["enabled"], + type: "object" + }, + "dead Letter Topic": { + description: + "The optional dead letter queue for this topic to send events to.", + type: "string" + }, + metadata: { + additionalProperties: { type: "string" }, + description: + "The optional metadata to provide the subscription.", + type: "object" + }, + pubsubname: { + description: "The PubSub component name.", + type: "string" + }, + routes: { + description: + "The Routes configuration for this topic.", + properties: { + default: { type: "string" }, + rules: { + description: "The list of rules for this topic.", + items: { + description: + "Rule is used to specify the condition for sending a message to a specific path.", + properties: { + match: { + description: + "The optional CEL expression used to match the event. If the match is not specified, then the route is considered the default. The rules are tested in the order specified, so they should be define from most-to-least specific. The default route should appear last in the list.", + type: "string" + }, + path: { + description: + "The path for events that match this rule.", + type: "string" + } + }, + required: ["match", "path"], + type: "object" + }, + type: "array" + } + }, + type: "object" + }, + topic: { + description: "The topic name to subscribe to.", + type: "string" + } + }, + required: ["pubsubname", "routes", "topic"], + type: "object" + } + }, + type: "object" + } + }, + served: true, + storage: true + } + ] + }, + name: "subscriptions.dapr.io", + labels: { "app.kubernetes.io/part-of": "dapr" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "a083d547-a923-4202-b86a-b89bede00e07", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 25 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/customresourcedefinition-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/customresourcedefinition-white.svg" + }, + position: { posX: -353.9042035625391, posY: 50.128324940266374 }, + whiteboardData: { style: {} } + } + }, + type: "CustomResourceDefinition" + } + } + } + }, + position: { x: -353.9042035625391, y: 50.128324940266374 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-operator", + services: { + "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a": { + namespace: "default", + settings: { + name: "dapr-operator", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1", + metadata: { binded_by: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4" }, + source: "bbbd5037-bc3e-4255-aa07-754479b3a169", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "2d852a36-9434-4e3b-a471-9a106a6f28d1", + metadata: { binded_by: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9" }, + source: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 27 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 327.36033532281493, posY: 117.96597998943753 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 327.36033532281493, y: 117.96597998943753 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + type: "ClusterRole", + apiVersion: "rbac.authorization.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd": { + settings: { + rules: [], + name: "dapr-scheduler", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "5671621a-4dca-4163-8c5b-c3b66b2c0859", + metadata: { binded_by: "c6e44479-39aa-4463-bad0-71b894a3d903" }, + source: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + subType: "Permission", + target: "b07fafde-3889-46d3-a342-a1efaaf724af" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 28 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 157.25827529112755, posY: -28.57153390678638 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + } + }, + position: { x: 157.25827529112755, y: -28.57153390678638 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "61913761-b4e4-4f63-8c86-e6dbeedc8111", + type: "PodDisruptionBudget", + apiVersion: "policy/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler-server-disruption-budget", + services: { + "61913761-b4e4-4f63-8c86-e6dbeedc8111": { + namespace: "default", + settings: { + spec: { + "max Unavailable": "25%", + selector: { + "match Labels": { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + } + }, + name: "dapr-scheduler-server-disruption-budget", + namespace: "default", + labels: { + app: "dapr-scheduler-server", + "app.kubernetes.io/component": "scheduler", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "61913761-b4e4-4f63-8c86-e6dbeedc8111", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "concave-hexagon", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 9 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/poddisruptionbudget-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/poddisruptionbudget-white.svg" + }, + position: { posX: -282.6130060389726, posY: 230.8494921328176 }, + whiteboardData: { style: {} } + } + }, + type: "PodDisruptionBudget" + } + } + } + }, + position: { x: -282.6130060389726, y: 230.8494921328176 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b07fafde-3889-46d3-a342-a1efaaf724af", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-scheduler", + services: { + "b07fafde-3889-46d3-a342-a1efaaf724af": { + namespace: "default", + settings: { + name: "dapr-scheduler", + namespace: "default", + labels: { + "app.kubernetes.io/component": "rbac", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "5671621a-4dca-4163-8c5b-c3b66b2c0859", + metadata: { binded_by: "c6e44479-39aa-4463-bad0-71b894a3d903" }, + source: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + subType: "Permission", + target: "b07fafde-3889-46d3-a342-a1efaaf724af" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "b07fafde-3889-46d3-a342-a1efaaf724af", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 11 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 374.03610347681416, posY: 30.553932982434183 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 374.03610347681416, y: 30.553932982434183 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "8d39f9d3-c49b-4f8e-ac78-18423ce58bf1", + type: "Secret", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "dapr-trust-bundle", + services: { + "8d39f9d3-c49b-4f8e-ac78-18423ce58bf1": { + namespace: "default", + settings: { + name: "dapr-trust-bundle", + namespace: "default", + labels: { + app: "dapr-sentry", + "app.kubernetes.io/component": "sentry", + "app.kubernetes.io/managed-by": "helm", + "app.kubernetes.io/name": "dapr", + "app.kubernetes.io/part-of": "dapr", + "app.kubernetes.io/version": "1.14.0-rc.4" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "8d39f9d3-c49b-4f8e-ac78-18423ce58bf1", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "shield", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-clip": "node", + "background-image-containment": "over", + "background-opacity": "0", + height: 32, + padding: 1, + width: 32, + "z-index": 36 + }, + styles: + '{"height":32,"width":32,"background-clip":"node","background-image-containment":"over","padding":1,"background-opacity":"0"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/secret-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/secret-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/secret-white.svg" + }, + position: { posX: -139.6160355743332, posY: -35.90226195075261 }, + whiteboardData: { style: {} } + } + }, + type: "Secret" + } + } + } + }, + position: { x: -139.6160355743332, y: -35.90226195075261 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "3b832f26-e503-4418-a757-95d1cfbed4f8", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-operator", + services: { + "3b832f26-e503-4418-a757-95d1cfbed4f8": { + settings: { name: "dapr-operator" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "3b832f26-e503-4418-a757-95d1cfbed4f8", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 47 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "6c3ac91b-c3e2-4312-91b3-4e24841b152e", + position: { posX: -248.29693297260172, posY: -239.31440895538674 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + position: { x: -248.29693297260172, y: -239.31440895538674 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sidecar-injector", + services: { + "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778": { + settings: { name: "dapr-sidecar-injector" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 49 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "33edf12d-9592-4f7b-8600-b7fe2d4364fe", + position: { posX: -372.3165815481291, posY: -241.1157188604219 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + position: { x: -372.3165815481291, y: -241.1157188604219 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a2631701-195d-4d75-8d89-66527605a309", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "dapr-sentry", + services: { + "a2631701-195d-4d75-8d89-66527605a309": { + settings: { name: "dapr-sentry" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "a2631701-195d-4d75-8d89-66527605a309", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 48 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "7a348b87-0a93-43b8-9920-a7eb6afe5941", + position: { posX: -145.08186906469734, posY: -237.47924925462706 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + position: { x: -145.08186906469734, y: -237.47924925462706 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "86d22457-aaae-4bd9-9b79-39d5dd3b7c93", + source: "787667bc-3cdf-4388-9f17-61df0e81a8d9", + subType: "Annotation", + target: "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "b1f21f3b-7824-43d7-87be-9c4db2cff585", + metadata: { binded_by: "4f2e583f-21c7-4c41-80e9-8029395028fe" }, + source: "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "0ba48862-cd1d-4509-b0d5-7084bf2f0d88", + metadata: { binded_by: "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3" }, + source: "a40347a6-2990-411e-937a-702617b7000f", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "adea5377-20b1-47e6-a27f-ba161d4ca3e5", + metadata: { binded_by: "b9e4ec94-82be-46e2-9360-0333e86dc44a" }, + source: "2c12611c-0547-4d84-ab43-b3c341199b57", + subType: "Permission", + target: "7c266d36-6aed-4a35-b8b4-dddacfaa33c6" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "2e21ce73-db2a-4ee3-a531-02fd847689a6", + metadata: { port: 443, protocol: "TCP" }, + source: "484a881e-7cbc-4b14-9962-cd7fc4b1775d", + subType: "Network", + target: "7a348b87-0a93-43b8-9920-a7eb6afe5941" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "1251d4b1-46c4-47e5-9c3b-56602a045c27", + source: "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e", + subType: "Annotation", + target: "472662f9-4151-4987-8bb8-a43ead2f2e62" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "822760e3-df49-46ab-b033-bbe026f4b6d3", + metadata: { binded_by: "7968b07e-1b76-433b-b1e3-d3f49b91d034" }, + source: "a8b21273-3bab-44d3-9a66-de1b98d25873", + subType: "Permission", + target: "58aad7ba-7469-43d7-b2a3-d2e026780207" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "1c6d4403-ee56-41fb-88b8-ddb2a67444c9", + metadata: { binded_by: "86bd9f7b-9c9f-4e7a-9842-3525a325d580" }, + source: "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337", + subType: "Permission", + target: "b55838ec-a9dc-48b4-8864-05a9bd33a0cd" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + animation: "marching-ants", + id: "9c3e106c-cac0-4291-87c8-7b25a08bf260", + source: "e5a5d1c1-ba59-4f76-b892-68374a602dc6", + subType: "Network", + target: "33edf12d-9592-4f7b-8600-b7fe2d4364fe" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "92f785f6-2b19-4218-8c6c-c37b2df57410", + metadata: { port: 443, protocol: "TCP" }, + source: "40fc8324-31d0-44a2-af15-b67e7ee01af4", + subType: "Network", + target: "6c3ac91b-c3e2-4312-91b3-4e24841b152e" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "2d852a36-9434-4e3b-a471-9a106a6f28d1", + metadata: { binded_by: "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9" }, + source: "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1", + metadata: { binded_by: "674e8273-f90a-45b8-aaa0-8cf23dc67ce4" }, + source: "bbbd5037-bc3e-4255-aa07-754479b3a169", + subType: "Permission", + target: "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "5671621a-4dca-4163-8c5b-c3b66b2c0859", + metadata: { binded_by: "c6e44479-39aa-4463-bad0-71b894a3d903" }, + source: "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd", + subType: "Permission", + target: "b07fafde-3889-46d3-a342-a1efaaf724af" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "7968b07e-1b76-433b-b1e3-d3f49b91d034": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1000", + zIndex: "1000", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4ada3a29-b9c1-4138-aeaf-58dbcb6a9ea9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "31", + zIndex: "31", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bf4e20d2-7c87-41e5-9384-c72a73ec8c0a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b9ada340-d9e8-4f11-b171-a42bc7c8d02a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "8", + zIndex: "8", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "resiliencies.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "resiliencies.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8d7926c8-20b1-4d68-b736-e8dbafd970cf": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "26", + zIndex: "26", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "components.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "components.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a40347a6-2990-411e-937a-702617b7000f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "13", + zIndex: "13", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "887ad3d7-52fb-40d7-ab84-f74d1d2faee3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "22", + zIndex: "22", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-webhook", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-webhook", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "7c266d36-6aed-4a35-b8b4-dddacfaa33c6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "45", + zIndex: "45", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "484a881e-7cbc-4b14-9962-cd7fc4b1775d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "35", + zIndex: "35", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "472662f9-4151-4987-8bb8-a43ead2f2e62": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "40", + zIndex: "40", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "58aad7ba-7469-43d7-b2a3-d2e026780207": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "10", + zIndex: "10", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "76c5bda5-0eb2-44f6-8f2d-b3d9f9ba4337": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "37", + zIndex: "37", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b55838ec-a9dc-48b4-8864-05a9bd33a0cd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "7", + zIndex: "7", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e5a5d1c1-ba59-4f76-b892-68374a602dc6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "44", + zIndex: "44", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "c313c81e-678c-4a3a-b975-345915c8de9d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "39", + zIndex: "39", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "configurations.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "configurations.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2c12611c-0547-4d84-ab43-b3c341199b57": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "20", + zIndex: "20", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c9bdb4ba-cf67-41a7-b95c-35bdc5ce6ae3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1001", + zIndex: "1001", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "de4b475b-614b-4c03-b5a1-62d02d83807d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "38", + zIndex: "38", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-trust-bundle", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-trust-bundle", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7127921c-3827-4290-b444-c8f5d3feca5f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "17", + zIndex: "17", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "secret-reader", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "secret-reader", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7a348b87-0a93-43b8-9920-a7eb6afe5941": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "32", + zIndex: "32", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "03182acd-bf30-4204-afab-e8a2305ee6c0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "24", + zIndex: "24", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "httpendpoints.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "httpendpoints.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "40fc8324-31d0-44a2-af15-b67e7ee01af4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "21", + zIndex: "21", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-api", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-api", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "bf3b8a3a-8206-4fd1-9a1d-90dacb4d410a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c6e44479-39aa-4463-bad0-71b894a3d903": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f6840034-c6a6-49a5-9ae0-edcf7f123184": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "6", + zIndex: "6", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-secret-reader", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "25px", + width: "25px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-secret-reader", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4f2e583f-21c7-4c41-80e9-8029395028fe": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1003", + zIndex: "1003", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4a33347b-9159-4462-a7a4-01bbe652aa8d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "19", + zIndex: "19", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "daprsystem", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(13,33,146)", + backgroundColor: "rgb(13,33,146)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(15,39,175)", + borderColor: "rgb(15,39,175)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "daprsystem", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b9e4ec94-82be-46e2-9360-0333e86dc44a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1004", + zIndex: "1004", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bbbd5037-bc3e-4255-aa07-754479b3a169": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "42", + zIndex: "42", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "787667bc-3cdf-4388-9f17-61df0e81a8d9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "29", + zIndex: "29", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "a8b21273-3bab-44d3-9a66-de1b98d25873": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "74f0fc5f-c84a-4c8c-a201-a75200fb9c1e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "16", + zIndex: "16", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-placement-server", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-placement-server", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "33edf12d-9592-4f7b-8600-b7fe2d4364fe": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "33", + zIndex: "33", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "674e8273-f90a-45b8-aaa0-8cf23dc67ce4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1005", + zIndex: "1005", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "26f2ead6-5ab5-4598-b3f8-eb0534fa57b9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1006", + zIndex: "1006", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6c3ac91b-c3e2-4312-91b3-4e24841b152e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "18", + zIndex: "18", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "86bd9f7b-9c9f-4e7a-9842-3525a325d580": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1007", + zIndex: "1007", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "20b13c8d-ec5d-4c40-bbbc-f5cb4ecbc728": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "12", + zIndex: "12", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-hexagon", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI2MDkxXzE2NjQ4KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNzkuNDM1OSA1MS4yMzJINzQuNzY1N0w4Mi4zODM2IDYwLjA3MzdMOTAuMDAxNiA1MS4yMzJIODUuNjYyNUM4NS4yODc1IDQ4LjU3NjcgODQuMjEzNCA0Ni4wNTYgODIuNTM0IDQzLjkzOTNDODAuNDEyIDQxLjI2NDcgNzcuNDQ5NCAzOS4zOTM3IDc0LjEzMTQgMzguNjMyNUM3MC44MTM0IDM3Ljg3MTMgNjcuMzM2NSAzOC4yNjUxIDY0LjI3MDIgMzkuNzQ5NEM2MS4yMDM5IDQxLjIzMzcgNTguNzI5OSA0My43MjA2IDU3LjI1MzMgNDYuODAyN0M1NS43NzY3IDQ5Ljg4NDggNTUuMzg1IDUzLjM3OTYgNTYuMTQyNCA1Ni43MTQ3QzU2Ljg5OTggNjAuMDQ5OCA1OC43NjEzIDYzLjAyNzYgNjEuNDIyMyA2NS4xNjA0QzY0LjA4MzIgNjcuMjkzMiA2Ny4zODU3IDY4LjQ1NDYgNzAuNzg5MSA2OC40NTQ1Qzc0LjE5MjQgNjguNDU0NCA3Ny40OTQ5IDY3LjI5MjggODAuMTU1NyA2NS4xNTk4TDc2LjMzODcgNjAuMzQ5MkM3NC43NjIyIDYxLjYxMyA3Mi44MDU0IDYyLjMwMTMgNzAuNzg4OSA2Mi4zMDE0QzY4Ljc3MjMgNjIuMzAxNCA2Ni44MTU1IDYxLjYxMzMgNjUuMjM4OSA2MC4zNDk1QzYzLjY2MjMgNTkuMDg1OCA2Mi41NTkzIDU3LjMyMTQgNjIuMTEwNSA1NS4zNDUzQzYxLjY2MTcgNTMuMzY5MyA2MS44OTM4IDUxLjI5ODYgNjIuNzY4NyA0OS40NzI0QzYzLjY0MzYgNDcuNjQ2MSA2NS4xMDk1IDQ2LjE3MjcgNjYuOTI2NCA0NS4yOTMyQzY4Ljc0MzIgNDQuNDEzNyA3MC44MDMzIDQ0LjE4MDQgNzIuNzY5MyA0NC42MzE0Qzc0LjczNTIgNDUuMDgyNCA3Ni40OTA2IDQ2LjE5MSA3Ny43NDc5IDQ3Ljc3NTdDNzguNTU4NyA0OC43OTc3IDc5LjEzMTQgNDkuOTc4NiA3OS40MzU5IDUxLjIzMloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjIuNzI3IDU2LjcwNDlMMjIuNzQ0NiA1Ni43MzU4TDIyLjc2NTggNTYuNzczNkMyNC41MDQ5IDU5Ljg5ODQgMjMuMzk2NyA2My44NDk4IDIwLjI5MDYgNjUuNTk5NEMxNy4xODQ1IDY3LjM0OSAxMy4yNTY2IDY2LjIzNDEgMTEuNTE3NSA2My4xMDkzQzkuNzc4MzkgNTkuOTg0NSAxMC44ODY2IDU2LjAzMzEgMTMuOTkyNyA1NC4yODM1QzE1LjIzNTkgNTMuNTgzMyAxNi42MTA3IDUzLjM0MTkgMTcuOTI0MSA1My41MDQ1TDI0LjYwMiA0Mi40NDY0QzIyLjUxOTUgNDAuODgxMiAyMC44MTk5IDM4Ljg0NjEgMTkuNjQ1NiAzNi40OTU4QzE4LjIxOTQgMzMuNjQxNCAxNy42MjY1IDMwLjQzODggMTcuOTM1NSAyNy4yNTkzQzE4LjI0NDYgMjQuMDc5NyAxOS40NDI5IDIxLjA1MzMgMjEuMzkxNiAxOC41MzA4QzIzLjM0MDQgMTYuMDA4NCAyNS45NTk3IDE0LjA5MzEgMjguOTQ2MiAxMy4wMDY5QzMxLjkzMjcgMTEuOTIwOCAzNS4xNjM5IDExLjcwODMgMzguMjY1NiAxMi4zOTRDNDEuMzY3MiAxMy4wNzk3IDQ0LjIxMjEgMTQuNjM1NiA0Ni40NzA4IDE2Ljg4MTNDNDguNzI5NCAxOS4xMjcgNTAuMzA5MiAyMS45NzA3IDUxLjAyNzEgMjUuMDgyN0M1MS43NDUgMjguMTk0NyA1MS41NzE3IDMxLjQ0NzcgNTAuNTI3MSAzNC40NjQ2TDQ0LjY0OTEgMzIuNDA0OUM0NS4zMDY3IDMwLjUwNTUgNDUuNDE1OSAyOC40NTc1IDQ0Ljk2MzkgMjYuNDk4M0M0NC41MTE5IDI0LjUzOTEgNDMuNTE3MyAyMi43NDg4IDQyLjA5NTMgMjEuMzM0OUM0MC42NzM0IDE5LjkyMTEgMzguODgyMyAxOC45NDE2IDM2LjkyOTYgMTguNTA5OUMzNC45NzY5IDE4LjA3ODIgMzIuOTQyNiAxOC4yMTIgMzEuMDYyNCAxOC44OTU4QzI5LjE4MjIgMTkuNTc5NiAyNy41MzMxIDIwLjc4NTQgMjYuMzA2MiAyMi4zNzM1QzI1LjA3OTQgMjMuOTYxNSAyNC4zMjQ5IDI1Ljg2NjkgMjQuMTMwNCAyNy44Njg2QzIzLjkzNTggMjkuODcwNCAyNC4zMDkxIDMxLjg4NjYgMjUuMjA3IDMzLjY4MzdDMjUuOTM3MSAzNS4xNDUxIDI2Ljk4OTkgMzYuNDEyOSAyOC4yNzg4IDM3LjM5MzNMMzIuNzQxOSA0MC4xMjFMMjIuNzI3IDU2LjcwNDlaTTM0Ljc1MDggMzUuNjczMUMzNC43NzY1IDM1LjY3NDUgMzQuODAyMSAzNS42NzU3IDM0LjgyNzggMzUuNjc2OEw0My40MTY1IDUzLjA1MUw0OC4wNiA1MC43Mjc4QzQ4LjgzMjUgNTAuNDMyNiA0OS42MzUzIDUwLjIzIDUwLjQ1MTggNTAuMTIzMUM1MC43MDY5IDQ3Ljg4NDcgNTEuMjk2IDQ1Ljc1MTEgNTIuMTY2OCA0My43NzU5QzUwIDQzLjczMDUgNDcuODQ1OSA0NC4xMDczIDQ1LjgyMzUgNDQuODg0MUw0MC4wOTIyIDMzLjI5MDRDNDAuOTI1NCAzMi4yNjE4IDQxLjQ1MzQgMzAuOTY3NSA0MS41Mjg2IDI5LjU0MUM0MS43MTcgMjUuOTY0OCAzOC45ODggMjIuOTEyIDM1LjQzMzEgMjIuNzIyNUMzMS44NzgzIDIyLjUzMjkgMjguODQzNyAyNS4yNzgzIDI4LjY1NTMgMjguODU0NkMyOC40NjY5IDMyLjQzMDggMzEuMTk1OSAzNS40ODM2IDM0Ljc1MDggMzUuNjczMVpNNjMuNjA2MyA3Mi43MjE3QzYxLjU1NTMgNzEuODg5NSA1OS42NjI0IDcwLjczNTkgNTcuOTg2NSA2OS4zMjE3QzU2Ljg1NjcgNzAuMTM3NiA1NS41NzMxIDcwLjcyNSA1NC4yMDY5IDcxLjA0MzhDNTIuMjU5MyA3MS40OTgyIDUwLjIyMzYgNzEuMzg4MSA0OC4zMzU3IDcwLjcyNjJDNDYuNDQ3NyA3MC4wNjQzIDQ0Ljc4NDkgNjguODc3OCA0My41Mzk4IDY3LjMwNDFMMzguNjY5OCA3MS4yMDM3QzQwLjY0NzQgNzMuNzAzMyA0My4yODg2IDc1LjU4OCA0Ni4yODc0IDc2LjYzOTNDNDkuMjg2MSA3Ny42OTA2IDUyLjUxOTYgNzcuODY1NSA1NS42MTMyIDc3LjE0MzdDNTguNjMzMyA3Ni40MzkgNjEuMzk5MyA3NC45MDc5IDYzLjYwNjMgNzIuNzIxN1pNNTQuODA1MiA2NS45ODc2QzUzLjAyMjIgNjYuNzU0OCA1MC45MTY1IDY2LjcwNzEgNDkuMDk3MyA2NS42NzRDNDcuODU2OCA2NC45Njk0IDQ2LjkzNzQgNjMuOTEzNCA0Ni4zOTI5IDYyLjcwMDFMMzMuNTI4NCA2Mi43MDcxQzMzLjI4MDggNjUuMzA4NyAzMi40MzU5IDY3LjgyNTMgMzEuMDUxIDcwLjA1NDZDMjkuMzY4IDcyLjc2MzggMjYuOTU2MyA3NC45Mzc3IDI0LjA5NTQgNzYuMzI0NEMyMS4yMzQ2IDc3LjcxMTIgMTguMDQxNyA3OC4yNTM5IDE0Ljg4NjcgNzcuODg5OEMxMS43MzE4IDc3LjUyNTcgOC43NDQgNzYuMjY5NyA2LjI2OTYgNzQuMjY3M0MzLjc5NTE5IDcyLjI2NDggMS45MzU0OSA2OS41OTggMC45MDYwMDUgNjYuNTc1OEMtMC4xMjM0NzggNjMuNTUzNiAtMC4yODA1OTkgNjAuMjk5OCAwLjQ1Mjg1NSA1Ny4xOTE1QzEuMTg2MzEgNTQuMDgzMSAyLjc4MDMxIDUxLjI0NzUgNS4wNTAxMyA0OS4wMTMyQzcuMzE5OTUgNDYuNzc4OSAxMC4xNzI3IDQ1LjIzNzUgMTMuMjc3NyA0NC41Njc0TDE0LjU4MzEgNTAuNjlDMTIuNjI4MyA1MS4xMTE4IDEwLjgzMjMgNTIuMDgyMyA5LjQwMzI2IDUzLjQ4ODlDNy45NzQyNiA1NC44OTU2IDYuOTcwNzIgNTYuNjgwOCA2LjUwODk2IDU4LjYzNzdDNi4wNDcyIDYwLjU5NDcgNi4xNDYxMSA2Mi42NDMyIDYuNzk0MjUgNjQuNTQ1OEM3LjQ0MjM4IDY2LjQ0ODUgOC42MTMxOSA2OC4xMjc1IDEwLjE3MSA2OS4zODgyQzExLjcyODggNzAuNjQ4OCAxMy42MDk4IDcxLjQzOTYgMTUuNTk2MSA3MS42Njg4QzE3LjU4MjQgNzEuODk4IDE5LjU5MjUgNzEuNTU2MyAyMS4zOTM2IDcwLjY4MzNDMjMuMTk0NyA2OS44MTAyIDI0LjcxMzEgNjguNDQxNiAyNS43NzI2IDY2LjczNkMyNi42MzYyIDY1LjM0NiAyNy4xNjYyIDYzLjc3ODUgMjcuMzI3OCA2Mi4xNTczTDI3LjMyNSA1Ni45MTkyTDQ2LjYxNDUgNTYuOTA4OUw0Ni42MjYxIDU2Ljg4NzhMNDYuNjUyOSA1Ni44Mzk1QzQ3LjQ5MTQgNTUuMzQ1MiA0OC44MzA4IDU0LjMxNDEgNTAuMzM5NiA1My44MzkxQzUwLjU4MDkgNTguNDEyOCA1Mi4yMTExIDYyLjYwNzYgNTQuODA1MiA2NS45ODc2WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yNjA5MV8xNjY0OCI+CjxyZWN0IHdpZHRoPSI5MCIgaGVpZ2h0PSI5MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI2MDkxXzE2NjQ4KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNzkuNDM1OSA1MS4yMzJINzQuNzY1N0w4Mi4zODM2IDYwLjA3MzdMOTAuMDAxNiA1MS4yMzJIODUuNjYyNUM4NS4yODc1IDQ4LjU3NjcgODQuMjEzNCA0Ni4wNTYgODIuNTM0IDQzLjkzOTNDODAuNDEyIDQxLjI2NDcgNzcuNDQ5NCAzOS4zOTM3IDc0LjEzMTQgMzguNjMyNUM3MC44MTM0IDM3Ljg3MTMgNjcuMzM2NSAzOC4yNjUxIDY0LjI3MDIgMzkuNzQ5NEM2MS4yMDM5IDQxLjIzMzcgNTguNzI5OSA0My43MjA2IDU3LjI1MzMgNDYuODAyN0M1NS43NzY3IDQ5Ljg4NDggNTUuMzg1IDUzLjM3OTYgNTYuMTQyNCA1Ni43MTQ3QzU2Ljg5OTggNjAuMDQ5OCA1OC43NjEzIDYzLjAyNzYgNjEuNDIyMyA2NS4xNjA0QzY0LjA4MzIgNjcuMjkzMiA2Ny4zODU3IDY4LjQ1NDYgNzAuNzg5MSA2OC40NTQ1Qzc0LjE5MjQgNjguNDU0NCA3Ny40OTQ5IDY3LjI5MjggODAuMTU1NyA2NS4xNTk4TDc2LjMzODcgNjAuMzQ5MkM3NC43NjIyIDYxLjYxMyA3Mi44MDU0IDYyLjMwMTMgNzAuNzg4OSA2Mi4zMDE0QzY4Ljc3MjMgNjIuMzAxNCA2Ni44MTU1IDYxLjYxMzMgNjUuMjM4OSA2MC4zNDk1QzYzLjY2MjMgNTkuMDg1OCA2Mi41NTkzIDU3LjMyMTQgNjIuMTEwNSA1NS4zNDUzQzYxLjY2MTcgNTMuMzY5MyA2MS44OTM4IDUxLjI5ODYgNjIuNzY4NyA0OS40NzI0QzYzLjY0MzYgNDcuNjQ2MSA2NS4xMDk1IDQ2LjE3MjcgNjYuOTI2NCA0NS4yOTMyQzY4Ljc0MzIgNDQuNDEzNyA3MC44MDMzIDQ0LjE4MDQgNzIuNzY5MyA0NC42MzE0Qzc0LjczNTIgNDUuMDgyNCA3Ni40OTA2IDQ2LjE5MSA3Ny43NDc5IDQ3Ljc3NTdDNzguNTU4NyA0OC43OTc3IDc5LjEzMTQgNDkuOTc4NiA3OS40MzU5IDUxLjIzMloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjIuNzI3IDU2LjcwNDlMMjIuNzQ0NiA1Ni43MzU4TDIyLjc2NTggNTYuNzczNkMyNC41MDQ5IDU5Ljg5ODQgMjMuMzk2NyA2My44NDk4IDIwLjI5MDYgNjUuNTk5NEMxNy4xODQ1IDY3LjM0OSAxMy4yNTY2IDY2LjIzNDEgMTEuNTE3NSA2My4xMDkzQzkuNzc4MzkgNTkuOTg0NSAxMC44ODY2IDU2LjAzMzEgMTMuOTkyNyA1NC4yODM1QzE1LjIzNTkgNTMuNTgzMyAxNi42MTA3IDUzLjM0MTkgMTcuOTI0MSA1My41MDQ1TDI0LjYwMiA0Mi40NDY0QzIyLjUxOTUgNDAuODgxMiAyMC44MTk5IDM4Ljg0NjEgMTkuNjQ1NiAzNi40OTU4QzE4LjIxOTQgMzMuNjQxNCAxNy42MjY1IDMwLjQzODggMTcuOTM1NSAyNy4yNTkzQzE4LjI0NDYgMjQuMDc5NyAxOS40NDI5IDIxLjA1MzMgMjEuMzkxNiAxOC41MzA4QzIzLjM0MDQgMTYuMDA4NCAyNS45NTk3IDE0LjA5MzEgMjguOTQ2MiAxMy4wMDY5QzMxLjkzMjcgMTEuOTIwOCAzNS4xNjM5IDExLjcwODMgMzguMjY1NiAxMi4zOTRDNDEuMzY3MiAxMy4wNzk3IDQ0LjIxMjEgMTQuNjM1NiA0Ni40NzA4IDE2Ljg4MTNDNDguNzI5NCAxOS4xMjcgNTAuMzA5MiAyMS45NzA3IDUxLjAyNzEgMjUuMDgyN0M1MS43NDUgMjguMTk0NyA1MS41NzE3IDMxLjQ0NzcgNTAuNTI3MSAzNC40NjQ2TDQ0LjY0OTEgMzIuNDA0OUM0NS4zMDY3IDMwLjUwNTUgNDUuNDE1OSAyOC40NTc1IDQ0Ljk2MzkgMjYuNDk4M0M0NC41MTE5IDI0LjUzOTEgNDMuNTE3MyAyMi43NDg4IDQyLjA5NTMgMjEuMzM0OUM0MC42NzM0IDE5LjkyMTEgMzguODgyMyAxOC45NDE2IDM2LjkyOTYgMTguNTA5OUMzNC45NzY5IDE4LjA3ODIgMzIuOTQyNiAxOC4yMTIgMzEuMDYyNCAxOC44OTU4QzI5LjE4MjIgMTkuNTc5NiAyNy41MzMxIDIwLjc4NTQgMjYuMzA2MiAyMi4zNzM1QzI1LjA3OTQgMjMuOTYxNSAyNC4zMjQ5IDI1Ljg2NjkgMjQuMTMwNCAyNy44Njg2QzIzLjkzNTggMjkuODcwNCAyNC4zMDkxIDMxLjg4NjYgMjUuMjA3IDMzLjY4MzdDMjUuOTM3MSAzNS4xNDUxIDI2Ljk4OTkgMzYuNDEyOSAyOC4yNzg4IDM3LjM5MzNMMzIuNzQxOSA0MC4xMjFMMjIuNzI3IDU2LjcwNDlaTTM0Ljc1MDggMzUuNjczMUMzNC43NzY1IDM1LjY3NDUgMzQuODAyMSAzNS42NzU3IDM0LjgyNzggMzUuNjc2OEw0My40MTY1IDUzLjA1MUw0OC4wNiA1MC43Mjc4QzQ4LjgzMjUgNTAuNDMyNiA0OS42MzUzIDUwLjIzIDUwLjQ1MTggNTAuMTIzMUM1MC43MDY5IDQ3Ljg4NDcgNTEuMjk2IDQ1Ljc1MTEgNTIuMTY2OCA0My43NzU5QzUwIDQzLjczMDUgNDcuODQ1OSA0NC4xMDczIDQ1LjgyMzUgNDQuODg0MUw0MC4wOTIyIDMzLjI5MDRDNDAuOTI1NCAzMi4yNjE4IDQxLjQ1MzQgMzAuOTY3NSA0MS41Mjg2IDI5LjU0MUM0MS43MTcgMjUuOTY0OCAzOC45ODggMjIuOTEyIDM1LjQzMzEgMjIuNzIyNUMzMS44NzgzIDIyLjUzMjkgMjguODQzNyAyNS4yNzgzIDI4LjY1NTMgMjguODU0NkMyOC40NjY5IDMyLjQzMDggMzEuMTk1OSAzNS40ODM2IDM0Ljc1MDggMzUuNjczMVpNNjMuNjA2MyA3Mi43MjE3QzYxLjU1NTMgNzEuODg5NSA1OS42NjI0IDcwLjczNTkgNTcuOTg2NSA2OS4zMjE3QzU2Ljg1NjcgNzAuMTM3NiA1NS41NzMxIDcwLjcyNSA1NC4yMDY5IDcxLjA0MzhDNTIuMjU5MyA3MS40OTgyIDUwLjIyMzYgNzEuMzg4MSA0OC4zMzU3IDcwLjcyNjJDNDYuNDQ3NyA3MC4wNjQzIDQ0Ljc4NDkgNjguODc3OCA0My41Mzk4IDY3LjMwNDFMMzguNjY5OCA3MS4yMDM3QzQwLjY0NzQgNzMuNzAzMyA0My4yODg2IDc1LjU4OCA0Ni4yODc0IDc2LjYzOTNDNDkuMjg2MSA3Ny42OTA2IDUyLjUxOTYgNzcuODY1NSA1NS42MTMyIDc3LjE0MzdDNTguNjMzMyA3Ni40MzkgNjEuMzk5MyA3NC45MDc5IDYzLjYwNjMgNzIuNzIxN1pNNTQuODA1MiA2NS45ODc2QzUzLjAyMjIgNjYuNzU0OCA1MC45MTY1IDY2LjcwNzEgNDkuMDk3MyA2NS42NzRDNDcuODU2OCA2NC45Njk0IDQ2LjkzNzQgNjMuOTEzNCA0Ni4zOTI5IDYyLjcwMDFMMzMuNTI4NCA2Mi43MDcxQzMzLjI4MDggNjUuMzA4NyAzMi40MzU5IDY3LjgyNTMgMzEuMDUxIDcwLjA1NDZDMjkuMzY4IDcyLjc2MzggMjYuOTU2MyA3NC45Mzc3IDI0LjA5NTQgNzYuMzI0NEMyMS4yMzQ2IDc3LjcxMTIgMTguMDQxNyA3OC4yNTM5IDE0Ljg4NjcgNzcuODg5OEMxMS43MzE4IDc3LjUyNTcgOC43NDQgNzYuMjY5NyA2LjI2OTYgNzQuMjY3M0MzLjc5NTE5IDcyLjI2NDggMS45MzU0OSA2OS41OTggMC45MDYwMDUgNjYuNTc1OEMtMC4xMjM0NzggNjMuNTUzNiAtMC4yODA1OTkgNjAuMjk5OCAwLjQ1Mjg1NSA1Ny4xOTE1QzEuMTg2MzEgNTQuMDgzMSAyLjc4MDMxIDUxLjI0NzUgNS4wNTAxMyA0OS4wMTMyQzcuMzE5OTUgNDYuNzc4OSAxMC4xNzI3IDQ1LjIzNzUgMTMuMjc3NyA0NC41Njc0TDE0LjU4MzEgNTAuNjlDMTIuNjI4MyA1MS4xMTE4IDEwLjgzMjMgNTIuMDgyMyA5LjQwMzI2IDUzLjQ4ODlDNy45NzQyNiA1NC44OTU2IDYuOTcwNzIgNTYuNjgwOCA2LjUwODk2IDU4LjYzNzdDNi4wNDcyIDYwLjU5NDcgNi4xNDYxMSA2Mi42NDMyIDYuNzk0MjUgNjQuNTQ1OEM3LjQ0MjM4IDY2LjQ0ODUgOC42MTMxOSA2OC4xMjc1IDEwLjE3MSA2OS4zODgyQzExLjcyODggNzAuNjQ4OCAxMy42MDk4IDcxLjQzOTYgMTUuNTk2MSA3MS42Njg4QzE3LjU4MjQgNzEuODk4IDE5LjU5MjUgNzEuNTU2MyAyMS4zOTM2IDcwLjY4MzNDMjMuMTk0NyA2OS44MTAyIDI0LjcxMzEgNjguNDQxNiAyNS43NzI2IDY2LjczNkMyNi42MzYyIDY1LjM0NiAyNy4xNjYyIDYzLjc3ODUgMjcuMzI3OCA2Mi4xNTczTDI3LjMyNSA1Ni45MTkyTDQ2LjYxNDUgNTYuOTA4OUw0Ni42MjYxIDU2Ljg4NzhMNDYuNjUyOSA1Ni44Mzk1QzQ3LjQ5MTQgNTUuMzQ1MiA0OC44MzA4IDU0LjMxNDEgNTAuMzM5NiA1My44MzkxQzUwLjU4MDkgNTguNDEyOCA1Mi4yMTExIDYyLjYwNzYgNTQuODA1MiA2NS45ODc2WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yNjA5MV8xNjY0OCI+CjxyZWN0IHdpZHRoPSI5MCIgaGVpZ2h0PSI5MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a083d547-a923-4202-b86a-b89bede00e07": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "25", + zIndex: "25", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "subscriptions.dapr.io", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOC43ODMgMTUuODEwOEg3LjE2Mzg3QzUuOTY5NzQgMTUuODEwOCA1LjAwMTcxIDE2Ljc3ODggNS4wMDE3MSAxNy45NzNWMzkuNTk0NUMxMC45NzE2IDM5LjU5NTQgMTUuODEwOCA0NC40MzUyIDE1LjgxMDggNTAuNDA1M0MxNS44MTA4IDU2LjM3NTQgMTAuOTcxNiA2MS4yMTUyIDUuMDAxNzEgNjEuMjE2MVY4Mi44Mzc4QzUuMDAxNzEgODQuMDMyIDUuOTY5NzQgODUgNy4xNjM4NyA4NUgyOC43ODNWODQuOTk5NkMyOC43ODMgNzkuMDI4OSAzMy42MjMxIDc0LjE4ODcgMzkuNTkzOCA3NC4xODg3QzQ1LjU2NDQgNzQuMTg4NyA1MC40MDQ2IDc5LjAyODkgNTAuNDA0NiA4NC45OTk2Vjg1SDcyLjAyODdDNzMuMjIyOSA4NSA3NC4xOTA5IDg0LjAzMiA3NC4xOTA5IDgyLjgzNzhWNjEuMjE2M0M4MC4xNiA2MS4yMTQ1IDg0Ljk5ODMgNTYuMzc1MSA4NC45OTgzIDUwLjQwNTVDODQuOTk4MyA0NC40MzYgODAuMTYgMzkuNTk2NSA3NC4xOTA5IDM5LjU5NDdWMTcuOTczQzc0LjE5MDkgMTYuNzc4OCA3My4yMjI5IDE1LjgxMDggNzIuMDI4NyAxNS44MTA4SDUwLjQwNDZDNTAuNDA0NiA5Ljg0MDE3IDQ1LjU2NDQgNSAzOS41OTM4IDVDMzMuNjIzMSA1IDI4Ljc4MyA5Ljg0MDE3IDI4Ljc4MyAxNS44MTA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "subscriptions.dapr.io", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ec2dcead-f5d4-4f1f-a390-a52aaeb3615a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "27", + zIndex: "27", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "cabb4fe2-63ec-436b-a2b7-73fe0ec1ebcd": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "28", + zIndex: "28", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "61913761-b4e4-4f63-8c86-e6dbeedc8111": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "9", + zIndex: "9", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler-server-disruption-budget", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "concave-hexagon", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler-server-disruption-budget", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b07fafde-3889-46d3-a342-a1efaaf724af": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "11", + zIndex: "11", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-scheduler", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-scheduler", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "8d39f9d3-c49b-4f8e-ac78-18423ce58bf1": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "36", + zIndex: "36", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-trust-bundle", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "32px", + width: "32px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "1px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "over", + backgroundImageContainment: "over", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-trust-bundle", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "1px", + paddingLeft: "1px", + "padding-right": "1px", + paddingRight: "1px", + "padding-top": "1px", + paddingTop: "1px", + "padding-bottom": "1px", + paddingBottom: "1px" + }, + "3b832f26-e503-4418-a757-95d1cfbed4f8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "47", + zIndex: "47", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-operator", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-operator", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ce8ea39e-efd7-40c3-bf8a-5e2a52cc0778": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "49", + zIndex: "49", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sidecar-injector", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sidecar-injector", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "a2631701-195d-4d75-8d89-66527605a309": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "48", + zIndex: "48", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "dapr-sentry", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "dapr-sentry", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "86d22457-aaae-4bd9-9b79-39d5dd3b7c93": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(147,152,176)", + lineColor: "rgb(147,152,176)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "b1f21f3b-7824-43d7-87be-9c4db2cff585": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "0ba48862-cd1d-4509-b0d5-7084bf2f0d88": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "adea5377-20b1-47e6-a27f-ba161d4ca3e5": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2e21ce73-db2a-4ee3-a531-02fd847689a6": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "443/TCP", + targetLabel: "443/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1251d4b1-46c4-47e5-9c3b-56602a045c27": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(147,152,176)", + lineColor: "rgb(147,152,176)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "822760e3-df49-46ab-b033-bbe026f4b6d3": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "1c6d4403-ee56-41fb-88b8-ddb2a67444c9": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "9c3e106c-cac0-4291-87c8-7b25a08bf260": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dashed", + lineStyle: "dashed", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "92f785f6-2b19-4218-8c6c-c37b2df57410": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "443/TCP", + targetLabel: "443/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2d852a36-9434-4e3b-a471-9a106a6f28d1": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "fae58b9c-fb4a-4e27-8c2c-a5c6628231a1": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "5671621a-4dca-4163-8c5b-c3b66b2c0859": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-7d183e77-09e1-4b69-a5ee-3e3870e9c5f4-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-deployment-service.js b/static/embed-test/embedded-design-deployment-service.js new file mode 100644 index 000000000000..49b1476ed36e --- /dev/null +++ b/static/embed-test/embedded-design-deployment-service.js @@ -0,0 +1,7989 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "4f9d3c78-2304-47bf-84cb-f34c95485d65", + type: "Service", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-admin", + services: { + "4f9d3c78-2304-47bf-84cb-f34c95485d65": { + namespace: "ambassador", + settings: { + spec: { + ports: [ + { + name: "ambassador-admin", + port: 8877, + protocol: "TCP", + "target Port": "admin" + }, + { + name: "ambassador-snapshot", + port: 8005, + protocol: "TCP", + "target Port": 8005 + } + ], + selector: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack" + }, + type: "ClusterIP" + }, + name: "edge-stack-admin", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + service: "ambassador-admin" + }, + annotations: { + "a8r.io/bugs": "https://github.com/datawire/ambassador/issues", + "a8r.io/chat": "http://a8r.io/Slack", + "a8r.io/dependencies": "None", + "a8r.io/description": + "The Ambassador Edge Stack admin service for internal use and health checks.", + "a8r.io/documentation": + "https://www.getambassador.io/docs/edge-stack/latest/", + "a8r.io/owner": "Ambassador Labs", + "a8r.io/repository": "github.com/datawire/ambassador", + "a8r.io/support": "https://www.getambassador.io/about-us/support/" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "6a8f392a-6d03-4376-8c41-669c513ba6bb", + metadata: { port: 8877, protocol: "TCP" }, + source: "4f9d3c78-2304-47bf-84cb-f34c95485d65", + subType: "Network", + target: "6a66429c-181f-4a78-83e4-0be23ed730e3" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "4f9d3c78-2304-47bf-84cb-f34c95485d65", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -80.18287118372115, posY: -56.04761131403264 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + }, + inventoryLength: 0 + }, + position: { x: -80.18287118372115, y: -56.04761131403264 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d1ec2c27-9f42-4bd1-91f7-290752a59d91", + type: "Deployment", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent", + services: { + "d1ec2c27-9f42-4bd1-91f7-290752a59d91": { + namespace: "ambassador", + settings: { + spec: { + "progress Deadline Seconds": 600, + replicas: 1, + selector: { + "match Labels": { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack-agent" + } + }, + template: { + metadata: { + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + spec: { + containers: [ + { + env: [ + { + name: "AGENT_NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "AGENT_CONFIG_RESOURCE_NAME", + value: "edge-stack-agent-cloud-token" + }, + { + name: "RPC_CONNECTION_ADDRESS", + value: "https://app.getambassador.io/" + }, + { + name: "AES_SNAPSHOT_URL", + value: + "http://edge-stack-admin.ambassador:8005/snapshot-external" + }, + { name: "AES_REPORT_DIAGNOSTICS_TO_CLOUD", value: "true" }, + { + name: "AES_DIAGNOSTICS_URL", + value: + "http://edge-stack-admin.ambassador:8877/ambassador/v0/diag/?json=true" + } + ], + image: "docker.io/ambassador/ambassador-agent:1.0.14", + "image Pull Policy": "IfNotPresent", + name: "agent", + ports: [{ "container Port": 8080, name: "http" }] + } + ], + "service Account Name": "edge-stack-agent" + } + } + }, + name: "edge-stack-agent", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "18063b44-442d-4c82-923c-8c78d09f572d", + metadata: { port: 80, protocol: "TCP" }, + source: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + subType: "Network", + target: "d1ec2c27-9f42-4bd1-91f7-290752a59d91" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "d1ec2c27-9f42-4bd1-91f7-290752a59d91", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 3 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 122.35302250930877, posY: 23.549326575940697 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + }, + inventoryLength: 0 + }, + position: { x: 118.35302250930877, y: 28.549326575940697 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6a66429c-181f-4a78-83e4-0be23ed730e3", + type: "Deployment", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "6a66429c-181f-4a78-83e4-0be23ed730e3": { + namespace: "ambassador", + settings: { + spec: { + "progress Deadline Seconds": 600, + replicas: 1, + selector: { + "match Labels": { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack" + } + }, + strategy: { type: "RollingUpdate" }, + template: { + metadata: { + annotations: { + "consul.hashicorp.com/connect-inject": "false", + "sidecar.istio.io/inject": "false" + }, + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + profile: "main" + } + }, + spec: { + affinity: { + "pod Anti Affinity": { + "preferred During Scheduling Ignored During Execution": [ + { + "pod Affinity Term": { + "label Selector": { + "match Labels": { service: "ambassador" } + }, + "topology Key": "kubernetes.io/hostname" + }, + weight: 100 + } + ] + } + }, + containers: [ + { + env: [ + { + name: "AMBASSADOR_NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "AGENT_CONFIG_RESOURCE_NAME", + value: "edge-stack-agent-cloud-token" + }, + { name: "AMBASSADOR_DRAIN_TIME", value: "600" }, + { + name: "AMBASSADOR_INTERNAL_URL", + value: "https://127.0.0.1:8443" + }, + { name: "POLL_EVERY_SECS", value: "60" }, + { name: "REDIS_URL", value: "edge-stack-redis:6379" } + ], + image: "docker.io/datawire/aes:3.11.0", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { + path: "/ambassador/v0/check_alive", + port: "admin" + }, + "initial Delay Seconds": 60, + "period Seconds": 10 + }, + name: "aes", + ports: [ + { "container Port": 8080, name: "http" }, + { "container Port": 8443, name: "https" }, + { "container Port": 8877, name: "admin" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { + path: "/ambassador/v0/check_ready", + port: "admin" + }, + "initial Delay Seconds": 60, + "period Seconds": 10 + }, + resources: { + limits: { cpu: "1000m", memory: "600Mi" }, + requests: { cpu: "200m", memory: "300Mi" } + }, + "security Context": { "allow Privilege Escalation": false }, + "volume Mounts": [ + { + "mount Path": "/tmp/ambassador-pod-info", + name: "ambassador-pod-info", + "read Only": true + } + ] + } + ], + "dns Policy": "ClusterFirst", + "host Network": false, + "image Pull Secrets": [], + "init Containers": [ + { + args: [ + 'deployment_name="emissary-apiext"\ndeployment_namespace="emissary-system"\nwhile true; do\n echo "checking if deployment/$deployment_name in namespace: $deployment_namespace exists."\n if kubectl get deployment "$deployment_name" -n $deployment_namespace > /dev/null 2>&1; then\n echo "$deployment_name.$deployment_namespace exists."\n echo "checking if $deployment_name.$deployment_namespace is fully available..."\n kubectl wait --for=condition=available deployment/"$deployment_name" -n $deployment_namespace --timeout=5m\n if [ $? -eq 0 ]; then\n echo "$deployment_name.$deployment_namespace is available"\n while true; do\n desired_replicas=$(kubectl get deployment $deployment_name -n $deployment_namespace -o jsonpath=\'{.spec.replicas}\')\n current_replicas=$(kubectl get deployment $deployment_name -n $deployment_namespace -o jsonpath=\'{.status.replicas}\')\n if [[ $current_replicas != $desired_replicas ]]; then\n echo "$deployment_name.$deployment_namespace is in the process of restarting. Have: $current_replicas, want $desired_replicas"\n sleep 3\n else\n echo "$deployment_name.$deployment_namespace is fully ready and not currently restarting. Have: $current_replicas, want $desired_replicas"\n break\n fi\n done\n break\n else\n echo "$deployment_name.$deployment_namespace did not become available within the timeout"\n fi\n else\n echo "$deployment_name.$deployment_namespace does not exist yet. Waiting..."\n sleep 3\n fi\ndone\n' + ], + command: ["/bin/sh", "-c"], + image: "istio/kubectl:1.5.10", + "image Pull Policy": "IfNotPresent", + name: "wait-for-apiext", + "security Context": { "run As User": 8888 } + } + ], + "restart Policy": "Always", + "security Context": { "run As User": 8888 }, + "service Account Name": "edge-stack", + "termination Grace Period Seconds": 0, + volumes: [ + { + "downward API": { + items: [ + { + "field Ref": { "field Path": "metadata.labels" }, + path: "labels" + } + ] + }, + name: "ambassador-pod-info" + } + ] + } + } + }, + name: "edge-stack", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "6a8f392a-6d03-4376-8c41-669c513ba6bb", + metadata: { port: 8877, protocol: "TCP" }, + source: "4f9d3c78-2304-47bf-84cb-f34c95485d65", + subType: "Network", + target: "6a66429c-181f-4a78-83e4-0be23ed730e3" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "ffcadef7-b7f8-4fad-8f07-ebf6230c6978", + metadata: { port: 80, protocol: "TCP" }, + source: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + subType: "Network", + target: "6a66429c-181f-4a78-83e4-0be23ed730e3" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "6a66429c-181f-4a78-83e4-0be23ed730e3", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 3 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -57.75, posY: 52.5 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + }, + inventoryLength: 0 + }, + position: { x: -61.75, y: 57.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + type: "Service", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d": { + namespace: "ambassador", + settings: { + spec: { + ports: [ + { name: "http", port: 80, "target Port": 8080 }, + { name: "https", port: 443, "target Port": 8443 } + ], + selector: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack", + profile: "main" + }, + type: "LoadBalancer" + }, + name: "edge-stack", + namespace: "ambassador", + labels: { + "app.kubernetes.io/component": "ambassador-service", + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + }, + annotations: { + "a8r.io/bugs": "https://github.com/datawire/ambassador/issues", + "a8r.io/chat": "http://a8r.io/Slack", + "a8r.io/dependencies": "edge-stack-redis.ambassador", + "a8r.io/description": + "The Ambassador Edge Stack goes beyond traditional API Gateways and Ingress Controllers with the advanced edge features needed to support developer self-service and full-cycle development.", + "a8r.io/documentation": + "https://www.getambassador.io/docs/edge-stack/latest/", + "a8r.io/owner": "Ambassador Labs", + "a8r.io/repository": "github.com/datawire/ambassador", + "a8r.io/support": "https://www.getambassador.io/about-us/support/" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "ffcadef7-b7f8-4fad-8f07-ebf6230c6978", + metadata: { port: 80, protocol: "TCP" }, + source: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + subType: "Network", + target: "6a66429c-181f-4a78-83e4-0be23ed730e3" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "18063b44-442d-4c82-923c-8c78d09f572d", + metadata: { port: 80, protocol: "TCP" }, + source: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + subType: "Network", + target: "d1ec2c27-9f42-4bd1-91f7-290752a59d91" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 3 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 20.71206623443326, posY: 97.00171526190805 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + }, + inventoryLength: 0 + }, + position: { x: 20.71206623443326, y: 97.00171526190805 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + elementType: "FIELD_REF_NODE", + label: "spec.template.spec.containers[0]", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + schemaFragment: { + description: + "A single application container that you want to run within a pod.", + properties: { + args: { + description: + 'Arguments to the entrypoint. The container image\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + command: { + description: + 'Entrypoint array. Not executed within a shell. The container image\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + env: { + description: + "List of environment variables to set in the container. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env Var represents an environment variable present in a Container.", + properties: { + name: { + default: "", + description: + "Name of the environment variable. Must be a C_IDENTIFIER.", + type: "string" + }, + value: { + description: + 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".', + type: "string" + }, + "value From": { + allOf: [ + { + description: + "Env Var Source represents a source for the value of an Env Var.", + properties: { + "config Map Key Ref": { + allOf: [ + { + description: "Selects a key from a Config Map.", + properties: { + key: { + default: "", + description: "The key to select.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: "Selects a key of a Config Map." + }, + "field Ref": { + allOf: [ + { + description: + "Object Field Selector selects an API Versioned field of an object.", + properties: { + "api Version": { + description: + 'Version of the schema the Field Path is written in terms of, defaults to "v1".', + type: "string" + }, + "field Path": { + default: "", + description: + "Path of the field to select in the specified API version.", + type: "string" + } + }, + required: ["field Path"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.node Name, spec.service Account Name, status.host IP, status.pod IP, status.pod I Ps." + }, + "resource Field Ref": { + allOf: [ + { + description: + "Resource Field Selector represents container resources (cpu, memory) and their output format", + properties: { + "container Name": { + description: + "Container name: required for volumes, optional for env vars", + type: "string" + }, + divisor: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [ + { type: "string" }, + { type: "number" } + ] + } + ], + default: {}, + description: + 'Specifies the output format of the exposed resources, defaults to "1"' + }, + resource: { + default: "", + description: "Required: resource to select", + type: "string" + } + }, + required: ["resource"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." + }, + "secret Key Ref": { + allOf: [ + { + description: + "Secret Key Selector selects a key of a Secret.", + properties: { + key: { + default: "", + description: + "The key of the secret to select from. Must be a valid secret key.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a key of a secret in the pod's namespace" + } + }, + type: "object" + } + ], + description: + "Source for the environment variable's value. Cannot be used if value is not empty." + } + }, + required: ["name"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "env From": { + description: + "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env From Source represents the source of a set of Config Maps", + properties: { + "config Map Ref": { + allOf: [ + { + description: + "Config Map Env Source selects a Config Map to populate the environment variables with. The contents of the target Config Map's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Config Map to select from" + }, + prefix: { + description: + "An optional identifier to prepend to each key in the Config Map. Must be a C_IDENTIFIER.", + type: "string" + }, + "secret Ref": { + allOf: [ + { + description: + "Secret Env Source selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Secret to select from" + } + }, + type: "object" + } + ], + default: {} + }, + type: "array" + }, + image: { + description: + "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and Stateful Sets.", + type: "string" + }, + "image Pull Policy": { + description: + 'Image pull policy. One of Always, Never, If Not Present. Defaults to Always if :latest tag is specified, or If Not Present otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images Possible enum values: - `"Always"` means that kubelet always attempts to pull the latest image. Container will fail If the pull fails. - `"If Not Present"` means that kubelet pulls if the image isn\'t present on disk. Container will fail if the image isn\'t present and the pull fails. - `"Never"` means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn\'t present', + enum: ["Always", "IfNotPresent", "Never"], + type: "string" + }, + lifecycle: { + allOf: [ + { + description: + "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the Post Start and Pre Stop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + properties: { + "post Start": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Post Start is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + }, + "pre Stop": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Pre Stop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the Pre Stop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + } + }, + type: "object" + } + ], + description: + "Actions that the management system should take in response to container lifecycle events. Cannot be updated." + }, + "liveness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + name: { + default: "", + description: + "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + type: "string" + }, + ports: { + description: + 'List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.', + items: { + allOf: [ + { + description: + "Container Port represents a network port in a single container.", + properties: { + "container Port": { + default: 0, + description: + "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + format: "int32", + type: "integer" + }, + "host IP": { + description: "What host IP to bind the external port to.", + type: "string" + }, + "host Port": { + description: + "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If Host Network is specified, this must match Container Port. Most containers do not need this.", + format: "int32", + type: "integer" + }, + name: { + description: + "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + type: "string" + }, + protocol: { + default: "TCP", + description: + 'Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". Possible enum values: - `"SCTP"` is the SCTP protocol. - `"TCP"` is the TCP protocol. - `"UDP"` is the UDP protocol.', + enum: ["SCTP", "TCP", "UDP"], + type: "string" + } + }, + required: ["container Port"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-list-map-keys": ["container Port", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "container Port", + "x-kubernetes-patch-strategy": "merge" + }, + "readiness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + resources: { + allOf: [ + { + description: + "Resource Requirements describes the compute resource requirements.", + properties: { + limits: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + }, + requests: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + } + }, + type: "object" + } + ], + default: {}, + description: + "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" + }, + "security Context": { + allOf: [ + { + description: + "Security Context holds security configuration that will be applied to a container. Some fields are present in both Security Context and Pod Security Context. When both are set, the values in Security Context take precedence.", + properties: { + "allow Privilege Escalation": { + description: + "Allow Privilege Escalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. Allow Privilege Escalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + capabilities: { + allOf: [ + { + description: + "Adds and removes POSIX capabilities from running containers.", + properties: { + add: { + description: "Added capabilities", + items: { default: "", type: "string" }, + type: "array" + }, + drop: { + description: "Removed capabilities", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: + "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." + }, + privileged: { + description: + "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "proc Mount": { + description: + "proc Mount denotes the type of proc mount to use for the containers. The default is Default Proc Mount which uses the container runtime defaults for readonly paths and masked paths. This requires the Proc Mount Type feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", + type: "string" + }, + "read Only Root Filesystem": { + description: + "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "run As Group": { + description: + "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "run As Non Root": { + description: + "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "boolean" + }, + "run As User": { + description: + "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "se Linux Options": { + allOf: [ + { + description: + "SE Linux Options are the labels to be applied to the container", + properties: { + level: { + description: + "Level is SE Linux level label that applies to the container.", + type: "string" + }, + role: { + description: + "Role is a SE Linux role label that applies to the container.", + type: "string" + }, + type: { + description: + "Type is a SE Linux type label that applies to the container.", + type: "string" + }, + user: { + description: + "User is a SE Linux user label that applies to the container.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The SE Linux context to be applied to the container. If unspecified, the container runtime will allocate a random SE Linux context for each container. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows." + }, + "seccomp Profile": { + allOf: [ + { + description: + "Seccomp Profile defines a pod/container's seccomp profile settings. Only one profile source may be set.", + properties: { + "localhost Profile": { + description: + 'localhost Profile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet\'s configured seccomp profile location. Must only be set if type is "Localhost".', + type: "string" + }, + type: { + default: "", + description: + 'type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. Runtime Default - the container runtime default profile should be used. Unconfined - no profile should be applied. Possible enum values: - `"Localhost"` indicates a profile defined in a file on the node should be used. The file\'s location relative to /seccomp. - `"Runtime Default"` represents the default container runtime seccomp profile. - `"Unconfined"` indicates no seccomp profile is applied (A.K.A. unconfined).', + enum: ["Localhost", "RuntimeDefault", "Unconfined"], + type: "string" + } + }, + required: ["type"], + type: "object", + "x-kubernetes-unions": [ + { + discriminator: "type", + "fields-to-discriminate By": { + "localhost Profile": "Localhost Profile" + } + } + ] + } + ], + description: + "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." + }, + "windows Options": { + allOf: [ + { + description: + "Windows Security Context Options contain Windows-specific options and credentials.", + properties: { + "gmsa Credential Spec": { + description: + "GMSA Credential Spec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSA Credential Spec Name field.", + type: "string" + }, + "gmsa Credential Spec Name": { + description: + "GMSA Credential Spec Name is the name of the GMSA credential spec to use.", + type: "string" + }, + "host Process": { + description: + "Host Process determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the Windows Host Process Containers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective Host Process value (it is not allowed to have a mix of Host Process containers and non-Host Process containers). In addition, if Host Process is true then Host Network must also be set to true.", + type: "boolean" + }, + "run As User Name": { + description: + "The User Name in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The Windows specific settings applied to all containers. If unspecified, the options from the Pod Security Context will be used. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is linux." + } + }, + type: "object" + } + ], + description: + "Security Context defines the security options the container should be run with. If set, the fields of Security Context override the equivalent fields of Pod Security Context. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + }, + "startup Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Startup Probe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the liveness Probe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + stdin: { + description: + "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + type: "boolean" + }, + "stdin Once": { + description: + "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdin Once is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + type: "boolean" + }, + "termination Message Path": { + description: + "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + type: "string" + }, + "termination Message Policy": { + description: + 'Indicate how the termination message should be populated. File will use the contents of termination Message Path to populate the container status message on both success and failure. Fallback To Logs On Error will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. Possible enum values: - `"Fallback To Logs On Error"` will read the most recent contents of the container logs for the container status message when the container exits with an error and the termination Message Path has no contents. - `"File"` is the default behavior and will set the container status message to the contents of the container\'s termination Message Path when the container exits.', + enum: ["FallbackToLogsOnError", "File"], + type: "string" + }, + tty: { + description: + "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + type: "boolean" + }, + "volume Devices": { + description: + "volume Devices is the list of block devices to be used by the container.", + items: { + allOf: [ + { + description: + "volume Device describes a mapping of a raw block device within a container.", + properties: { + "device Path": { + default: "", + description: + "device Path is the path inside of the container that the device will be mapped to.", + type: "string" + }, + name: { + default: "", + description: + "name must match the name of a persistent Volume Claim in the pod", + type: "string" + } + }, + required: ["name", "device Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "device Path", + "x-kubernetes-patch-strategy": "merge" + }, + "volume Mounts": { + description: + "Pod volumes to mount into the container's filesystem. Cannot be updated.", + items: { + allOf: [ + { + description: + "Volume Mount describes a mounting of a Volume within a container.", + properties: { + "mount Path": { + default: "", + description: + "Path within the container at which the volume should be mounted. Must not contain ':'.", + type: "string" + }, + "mount Propagation": { + description: + "mount Propagation determines how mounts are propagated from the host to container and the other way around. When not set, Mount Propagation None is used. This field is beta in 1.10.", + type: "string" + }, + name: { + default: "", + description: "This must match the Name of a Volume.", + type: "string" + }, + "read Only": { + description: + "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + type: "boolean" + }, + "sub Path": { + description: + "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + type: "string" + }, + "sub Path Expr": { + description: + "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to Sub Path but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). Sub Path Expr and Sub Path are mutually exclusive.", + type: "string" + } + }, + required: ["name", "mount Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "mount Path", + "x-kubernetes-patch-strategy": "merge" + }, + "working Dir": { + description: + "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + componentDefinition: { + id: "fcd41e59-cb70-481c-9302-9221e389087c", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + displayName: "Container", + description: "", + format: "JSON", + model: { + id: "b2626b4d-0761-57bb-b27a-9dc5339b0c86", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + name: "meshery-core", + displayName: "Meshery Core", + description: "", + status: "enabled", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + registrant: { hostname: "artifacthub" }, + category: { name: "Orchestration & Management", metadata: null }, + subCategory: "App Definition and Development", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + components: null, + relationships: null + }, + metadata: { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": false,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": false\n },\n "style": false\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: "", + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + component: { + kind: "Container", + version: "core.meshery.io/v1alpha1", + schema: "{}" + }, + duplicates: 6 + }, + parent: "d1ec2c27-9f42-4bd1-91f7-290752a59d91", + id: "03351f05-31d2-4eb6-b374-4645b6889ada", + config: { + services: { + "03351f05-31d2-4eb6-b374-4645b6889ada": { settings: { name: "agent" } } + } + } + }, + position: { x: 118.35302250930877, y: 19.549326575940697 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "fieldRefNode" + }, + { + data: { + elementType: "FIELD_REF_NODE", + label: "spec.template.spec.containers[0]", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + schemaFragment: { + description: + "A single application container that you want to run within a pod.", + properties: { + args: { + description: + 'Arguments to the entrypoint. The container image\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + command: { + description: + 'Entrypoint array. Not executed within a shell. The container image\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + env: { + description: + "List of environment variables to set in the container. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env Var represents an environment variable present in a Container.", + properties: { + name: { + default: "", + description: + "Name of the environment variable. Must be a C_IDENTIFIER.", + type: "string" + }, + value: { + description: + 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".', + type: "string" + }, + "value From": { + allOf: [ + { + description: + "Env Var Source represents a source for the value of an Env Var.", + properties: { + "config Map Key Ref": { + allOf: [ + { + description: "Selects a key from a Config Map.", + properties: { + key: { + default: "", + description: "The key to select.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: "Selects a key of a Config Map." + }, + "field Ref": { + allOf: [ + { + description: + "Object Field Selector selects an API Versioned field of an object.", + properties: { + "api Version": { + description: + 'Version of the schema the Field Path is written in terms of, defaults to "v1".', + type: "string" + }, + "field Path": { + default: "", + description: + "Path of the field to select in the specified API version.", + type: "string" + } + }, + required: ["field Path"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.node Name, spec.service Account Name, status.host IP, status.pod IP, status.pod I Ps." + }, + "resource Field Ref": { + allOf: [ + { + description: + "Resource Field Selector represents container resources (cpu, memory) and their output format", + properties: { + "container Name": { + description: + "Container name: required for volumes, optional for env vars", + type: "string" + }, + divisor: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [ + { type: "string" }, + { type: "number" } + ] + } + ], + default: {}, + description: + 'Specifies the output format of the exposed resources, defaults to "1"' + }, + resource: { + default: "", + description: "Required: resource to select", + type: "string" + } + }, + required: ["resource"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." + }, + "secret Key Ref": { + allOf: [ + { + description: + "Secret Key Selector selects a key of a Secret.", + properties: { + key: { + default: "", + description: + "The key of the secret to select from. Must be a valid secret key.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a key of a secret in the pod's namespace" + } + }, + type: "object" + } + ], + description: + "Source for the environment variable's value. Cannot be used if value is not empty." + } + }, + required: ["name"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "env From": { + description: + "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env From Source represents the source of a set of Config Maps", + properties: { + "config Map Ref": { + allOf: [ + { + description: + "Config Map Env Source selects a Config Map to populate the environment variables with. The contents of the target Config Map's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Config Map to select from" + }, + prefix: { + description: + "An optional identifier to prepend to each key in the Config Map. Must be a C_IDENTIFIER.", + type: "string" + }, + "secret Ref": { + allOf: [ + { + description: + "Secret Env Source selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Secret to select from" + } + }, + type: "object" + } + ], + default: {} + }, + type: "array" + }, + image: { + description: + "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and Stateful Sets.", + type: "string" + }, + "image Pull Policy": { + description: + 'Image pull policy. One of Always, Never, If Not Present. Defaults to Always if :latest tag is specified, or If Not Present otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images Possible enum values: - `"Always"` means that kubelet always attempts to pull the latest image. Container will fail If the pull fails. - `"If Not Present"` means that kubelet pulls if the image isn\'t present on disk. Container will fail if the image isn\'t present and the pull fails. - `"Never"` means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn\'t present', + enum: ["Always", "IfNotPresent", "Never"], + type: "string" + }, + lifecycle: { + allOf: [ + { + description: + "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the Post Start and Pre Stop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + properties: { + "post Start": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Post Start is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + }, + "pre Stop": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Pre Stop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the Pre Stop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + } + }, + type: "object" + } + ], + description: + "Actions that the management system should take in response to container lifecycle events. Cannot be updated." + }, + "liveness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + name: { + default: "", + description: + "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + type: "string" + }, + ports: { + description: + 'List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.', + items: { + allOf: [ + { + description: + "Container Port represents a network port in a single container.", + properties: { + "container Port": { + default: 0, + description: + "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + format: "int32", + type: "integer" + }, + "host IP": { + description: "What host IP to bind the external port to.", + type: "string" + }, + "host Port": { + description: + "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If Host Network is specified, this must match Container Port. Most containers do not need this.", + format: "int32", + type: "integer" + }, + name: { + description: + "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + type: "string" + }, + protocol: { + default: "TCP", + description: + 'Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". Possible enum values: - `"SCTP"` is the SCTP protocol. - `"TCP"` is the TCP protocol. - `"UDP"` is the UDP protocol.', + enum: ["SCTP", "TCP", "UDP"], + type: "string" + } + }, + required: ["container Port"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-list-map-keys": ["container Port", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "container Port", + "x-kubernetes-patch-strategy": "merge" + }, + "readiness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + resources: { + allOf: [ + { + description: + "Resource Requirements describes the compute resource requirements.", + properties: { + limits: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + }, + requests: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + } + }, + type: "object" + } + ], + default: {}, + description: + "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" + }, + "security Context": { + allOf: [ + { + description: + "Security Context holds security configuration that will be applied to a container. Some fields are present in both Security Context and Pod Security Context. When both are set, the values in Security Context take precedence.", + properties: { + "allow Privilege Escalation": { + description: + "Allow Privilege Escalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. Allow Privilege Escalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + capabilities: { + allOf: [ + { + description: + "Adds and removes POSIX capabilities from running containers.", + properties: { + add: { + description: "Added capabilities", + items: { default: "", type: "string" }, + type: "array" + }, + drop: { + description: "Removed capabilities", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: + "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." + }, + privileged: { + description: + "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "proc Mount": { + description: + "proc Mount denotes the type of proc mount to use for the containers. The default is Default Proc Mount which uses the container runtime defaults for readonly paths and masked paths. This requires the Proc Mount Type feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", + type: "string" + }, + "read Only Root Filesystem": { + description: + "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "run As Group": { + description: + "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "run As Non Root": { + description: + "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "boolean" + }, + "run As User": { + description: + "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "se Linux Options": { + allOf: [ + { + description: + "SE Linux Options are the labels to be applied to the container", + properties: { + level: { + description: + "Level is SE Linux level label that applies to the container.", + type: "string" + }, + role: { + description: + "Role is a SE Linux role label that applies to the container.", + type: "string" + }, + type: { + description: + "Type is a SE Linux type label that applies to the container.", + type: "string" + }, + user: { + description: + "User is a SE Linux user label that applies to the container.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The SE Linux context to be applied to the container. If unspecified, the container runtime will allocate a random SE Linux context for each container. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows." + }, + "seccomp Profile": { + allOf: [ + { + description: + "Seccomp Profile defines a pod/container's seccomp profile settings. Only one profile source may be set.", + properties: { + "localhost Profile": { + description: + 'localhost Profile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet\'s configured seccomp profile location. Must only be set if type is "Localhost".', + type: "string" + }, + type: { + default: "", + description: + 'type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. Runtime Default - the container runtime default profile should be used. Unconfined - no profile should be applied. Possible enum values: - `"Localhost"` indicates a profile defined in a file on the node should be used. The file\'s location relative to /seccomp. - `"Runtime Default"` represents the default container runtime seccomp profile. - `"Unconfined"` indicates no seccomp profile is applied (A.K.A. unconfined).', + enum: ["Localhost", "RuntimeDefault", "Unconfined"], + type: "string" + } + }, + required: ["type"], + type: "object", + "x-kubernetes-unions": [ + { + discriminator: "type", + "fields-to-discriminate By": { + "localhost Profile": "Localhost Profile" + } + } + ] + } + ], + description: + "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." + }, + "windows Options": { + allOf: [ + { + description: + "Windows Security Context Options contain Windows-specific options and credentials.", + properties: { + "gmsa Credential Spec": { + description: + "GMSA Credential Spec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSA Credential Spec Name field.", + type: "string" + }, + "gmsa Credential Spec Name": { + description: + "GMSA Credential Spec Name is the name of the GMSA credential spec to use.", + type: "string" + }, + "host Process": { + description: + "Host Process determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the Windows Host Process Containers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective Host Process value (it is not allowed to have a mix of Host Process containers and non-Host Process containers). In addition, if Host Process is true then Host Network must also be set to true.", + type: "boolean" + }, + "run As User Name": { + description: + "The User Name in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The Windows specific settings applied to all containers. If unspecified, the options from the Pod Security Context will be used. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is linux." + } + }, + type: "object" + } + ], + description: + "Security Context defines the security options the container should be run with. If set, the fields of Security Context override the equivalent fields of Pod Security Context. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + }, + "startup Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Startup Probe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the liveness Probe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + stdin: { + description: + "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + type: "boolean" + }, + "stdin Once": { + description: + "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdin Once is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + type: "boolean" + }, + "termination Message Path": { + description: + "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + type: "string" + }, + "termination Message Policy": { + description: + 'Indicate how the termination message should be populated. File will use the contents of termination Message Path to populate the container status message on both success and failure. Fallback To Logs On Error will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. Possible enum values: - `"Fallback To Logs On Error"` will read the most recent contents of the container logs for the container status message when the container exits with an error and the termination Message Path has no contents. - `"File"` is the default behavior and will set the container status message to the contents of the container\'s termination Message Path when the container exits.', + enum: ["FallbackToLogsOnError", "File"], + type: "string" + }, + tty: { + description: + "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + type: "boolean" + }, + "volume Devices": { + description: + "volume Devices is the list of block devices to be used by the container.", + items: { + allOf: [ + { + description: + "volume Device describes a mapping of a raw block device within a container.", + properties: { + "device Path": { + default: "", + description: + "device Path is the path inside of the container that the device will be mapped to.", + type: "string" + }, + name: { + default: "", + description: + "name must match the name of a persistent Volume Claim in the pod", + type: "string" + } + }, + required: ["name", "device Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "device Path", + "x-kubernetes-patch-strategy": "merge" + }, + "volume Mounts": { + description: + "Pod volumes to mount into the container's filesystem. Cannot be updated.", + items: { + allOf: [ + { + description: + "Volume Mount describes a mounting of a Volume within a container.", + properties: { + "mount Path": { + default: "", + description: + "Path within the container at which the volume should be mounted. Must not contain ':'.", + type: "string" + }, + "mount Propagation": { + description: + "mount Propagation determines how mounts are propagated from the host to container and the other way around. When not set, Mount Propagation None is used. This field is beta in 1.10.", + type: "string" + }, + name: { + default: "", + description: "This must match the Name of a Volume.", + type: "string" + }, + "read Only": { + description: + "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + type: "boolean" + }, + "sub Path": { + description: + "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + type: "string" + }, + "sub Path Expr": { + description: + "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to Sub Path but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). Sub Path Expr and Sub Path are mutually exclusive.", + type: "string" + } + }, + required: ["name", "mount Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "mount Path", + "x-kubernetes-patch-strategy": "merge" + }, + "working Dir": { + description: + "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + componentDefinition: { + id: "fcd41e59-cb70-481c-9302-9221e389087c", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + displayName: "Container", + description: "", + format: "JSON", + model: { + id: "b2626b4d-0761-57bb-b27a-9dc5339b0c86", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + name: "meshery-core", + displayName: "Meshery Core", + description: "", + status: "enabled", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + registrant: { hostname: "artifacthub" }, + category: { name: "Orchestration & Management", metadata: null }, + subCategory: "App Definition and Development", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + components: null, + relationships: null + }, + metadata: { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": false,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": false\n },\n "style": false\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: "", + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + component: { + kind: "Container", + version: "core.meshery.io/v1alpha1", + schema: "{}" + }, + duplicates: 6 + }, + parent: "6a66429c-181f-4a78-83e4-0be23ed730e3", + id: "d69e6c5e-8101-48ec-85db-f08daed73b36", + config: { + services: { + "d69e6c5e-8101-48ec-85db-f08daed73b36": { settings: { name: "aes" } } + } + } + }, + position: { x: -61.75, y: 48.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "fieldRefNode" + } + ], + edges: [ + { + data: { + id: "6a8f392a-6d03-4376-8c41-669c513ba6bb", + metadata: { port: 8877, protocol: "TCP" }, + source: "4f9d3c78-2304-47bf-84cb-f34c95485d65", + subType: "Network", + target: "6a66429c-181f-4a78-83e4-0be23ed730e3" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "18063b44-442d-4c82-923c-8c78d09f572d", + metadata: { port: 80, protocol: "TCP" }, + source: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + subType: "Network", + target: "d1ec2c27-9f42-4bd1-91f7-290752a59d91" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "ffcadef7-b7f8-4fad-8f07-ebf6230c6978", + metadata: { port: 80, protocol: "TCP" }, + source: "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d", + subType: "Network", + target: "6a66429c-181f-4a78-83e4-0be23ed730e3" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "4f9d3c78-2304-47bf-84cb-f34c95485d65": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "d1ec2c27-9f42-4bd1-91f7-290752a59d91": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "3", + zIndex: "3", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6a66429c-181f-4a78-83e4-0be23ed730e3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b9702cdb-2390-4f2a-a9c7-096ef1a7d84d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "6a8f392a-6d03-4376-8c41-669c513ba6bb": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "8877/TCP", + targetLabel: "8877/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "18063b44-442d-4c82-923c-8c78d09f572d": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "ffcadef7-b7f8-4fad-8f07-ebf6230c6978": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "03351f05-31d2-4eb6-b374-4645b6889ada": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "d69e6c5e-8101-48ec-85db-f08daed73b36": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "aes", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "aes", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-7b01cebf-b0f9-4c11-87e7-612d8fad10c8-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-edge-stack.js b/static/embed-test/embedded-design-edge-stack.js new file mode 100644 index 000000000000..27fdbb05312b --- /dev/null +++ b/static/embed-test/embedded-design-edge-stack.js @@ -0,0 +1,27278 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4", + type: "Service", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-admin", + services: { + "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4": { + namespace: "ambassador", + settings: { + spec: { + ports: [ + { + name: "ambassador-admin", + port: 8877, + protocol: "TCP", + "target Port": "admin" + }, + { + name: "ambassador-snapshot", + port: 8005, + protocol: "TCP", + "target Port": 8005 + } + ], + selector: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack" + }, + type: "ClusterIP" + }, + name: "edge-stack-admin", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + service: "ambassador-admin" + }, + annotations: { + "a8r.io/bugs": "https://github.com/datawire/ambassador/issues", + "a8r.io/chat": "http://a8r.io/Slack", + "a8r.io/dependencies": "None", + "a8r.io/description": + "The Ambassador Edge Stack admin service for internal use and health checks.", + "a8r.io/documentation": + "https://www.getambassador.io/docs/edge-stack/latest/", + "a8r.io/owner": "Ambassador Labs", + "a8r.io/repository": "github.com/datawire/ambassador", + "a8r.io/support": "https://www.getambassador.io/about-us/support/" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "f064b241-19b0-4c0d-a7c6-dedc9a23f366", + metadata: { port: 8877, protocol: "TCP" }, + source: "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4", + subType: "Network", + target: "7820034f-bd39-454e-b215-5bb8af95c405" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 1001 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -198.84684251594268, posY: -93.93873708737009 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + }, + inventoryLength: 0 + }, + position: { x: -198.84684251594268, y: -93.93873708737009 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb", + type: "Deployment", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent", + services: { + "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb": { + namespace: "ambassador", + settings: { + spec: { + "progress Deadline Seconds": 600, + replicas: 1, + selector: { + "match Labels": { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack-agent" + } + }, + template: { + metadata: { + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + spec: { + containers: [ + { + env: [ + { + name: "AGENT_NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "AGENT_CONFIG_RESOURCE_NAME", + value: "edge-stack-agent-cloud-token" + }, + { + name: "RPC_CONNECTION_ADDRESS", + value: "https://app.getambassador.io/" + }, + { + name: "AES_SNAPSHOT_URL", + value: + "http://edge-stack-admin.ambassador:8005/snapshot-external" + }, + { name: "AES_REPORT_DIAGNOSTICS_TO_CLOUD", value: "true" }, + { + name: "AES_DIAGNOSTICS_URL", + value: + "http://edge-stack-admin.ambassador:8877/ambassador/v0/diag/?json=true" + } + ], + image: "docker.io/ambassador/ambassador-agent:1.0.14", + "image Pull Policy": "IfNotPresent", + name: "agent", + ports: [{ "container Port": 8080, name: "http" }] + } + ], + "service Account Name": "edge-stack-agent" + } + } + }, + name: "edge-stack-agent", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "d11b96ae-0cf4-4e4c-b9a3-50507b62d79e", + metadata: { port: 80, protocol: "TCP" }, + source: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + subType: "Network", + target: "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 1001 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -210, posY: -206.5 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + }, + inventoryLength: 0 + }, + position: { x: -214, y: -201.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f345ac82-0446-49f6-8f80-833e99f459ff", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-watch", + services: { + "f345ac82-0446-49f6-8f80-833e99f459ff": { + settings: { + rules: [ + { + "api Groups": [""], + resources: [ + "namespaces", + "services", + "secrets", + "configmaps", + "endpoints" + ], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["getambassador.io", "gateway.getambassador.io"], + resources: ["*"], + verbs: [ + "get", + "list", + "watch", + "update", + "patch", + "create", + "delete" + ] + }, + { + "api Groups": ["getambassador.io"], + resources: ["mappings/status"], + verbs: ["update"] + }, + { + "api Groups": ["networking.internal.knative.dev"], + resources: ["clusteringresses", "ingresses"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["networking.x-k8s.io"], + resources: ["*"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["networking.internal.knative.dev"], + resources: ["ingresses/status", "clusteringresses/status"], + verbs: ["update"] + }, + { + "api Groups": ["extensions", "networking.k8s.io"], + resources: ["ingresses", "ingressclasses"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": ["extensions", "networking.k8s.io"], + resources: ["ingresses/status"], + verbs: ["update"] + } + ], + name: "edge-stack-watch", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack" + } + }, + traits: { + meshmap: { + edges: [], + id: "f345ac82-0446-49f6-8f80-833e99f459ff", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -196.9139109451896, posY: 170.61594866162295 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -196.9139109451896, y: 170.61594866162295 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4ae1f64a-c8db-4e87-b95c-11efb4bcf693", + type: "Module", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "ambassador", + services: { + "4ae1f64a-c8db-4e87-b95c-11efb4bcf693": { + namespace: "ambassador", + settings: { + spec: { + config: { diagnostics: { allow_non_local: true, enabled: false } } + }, + name: "ambassador", + namespace: "ambassador", + labels: { + "app.kubernetes.io/component": "edge-stack", + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [], + id: "4ae1f64a-c8db-4e87-b95c-11efb4bcf693", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: 33.76088445937175, posY: 194.02855363265516 }, + whiteboardData: { style: {} } + } + }, + type: "Module" + } + } + }, + inventoryLength: 0 + }, + position: { x: 33.76088445937175, y: 194.02855363265516 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "03a72188-6643-4314-8c2a-0da6f6135675", + type: "Role", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-config", + services: { + "03a72188-6643-4314-8c2a-0da6f6135675": { + namespace: "ambassador", + settings: { + rules: [ + { + "api Groups": [""], + resources: ["configmaps"], + verbs: ["get", "list", "watch"] + }, + { + "api Groups": [""], + resources: ["secrets"], + verbs: ["get", "list", "watch", "create", "delete", "patch"] + } + ], + name: "edge-stack-agent-config", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "b512a101-6b54-4aa5-b8ce-66fc772bb362", + metadata: { binded_by: "b2f3d75e-28fe-4359-b0b2-2287ced3d53c" }, + source: "03a72188-6643-4314-8c2a-0da6f6135675", + subType: "Permission", + target: "e1a6aac1-3112-420f-b646-09dd7f71b29f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "03a72188-6643-4314-8c2a-0da6f6135675", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: 295.4825008918432, posY: -52.09402193159565 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + }, + inventoryLength: 0 + }, + position: { x: 295.4825008918432, y: -52.09402193159565 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2a269e24-8a45-4b31-b1bd-bc3ab24943da", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent", + services: { + "2a269e24-8a45-4b31-b1bd-bc3ab24943da": { + settings: { + "aggregation Rule": { + "cluster Role Selectors": [ + { + "match Labels": { + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + } + ] + }, + rules: [], + name: "edge-stack-agent", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "6c978563-edd7-4c16-a09d-a1c63857df56", + metadata: { binded_by: "52adbc0e-45f3-444d-80c5-2214aa2c7efc" }, + source: "2a269e24-8a45-4b31-b1bd-bc3ab24943da", + subType: "Permission", + target: "e1a6aac1-3112-420f-b646-09dd7f71b29f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "2a269e24-8a45-4b31-b1bd-bc3ab24943da", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -109.42295929895602, posY: -94.20208496513351 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -109.42295929895602, y: -94.20208496513351 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "88657fea-8edf-4f54-bfc2-6c8f10d5c79e", + type: "Mapping", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "edge-stack-devportal", + services: { + "88657fea-8edf-4f54-bfc2-6c8f10d5c79e": { + namespace: "ambassador", + settings: { + spec: { + hostname: "*", + prefix: "/documentation/", + rewrite: "/docs/", + service: "127.0.0.1:8500" + }, + name: "edge-stack-devportal", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "88657fea-8edf-4f54-bfc2-6c8f10d5c79e", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: -81.65617922147881, posY: 103.45456789446546 }, + whiteboardData: { style: {} } + } + }, + type: "Mapping" + } + } + }, + inventoryLength: 0 + }, + position: { x: -81.65617922147881, y: 103.45456789446546 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "9def6980-7ca2-4738-8c66-c2bcae5b9111", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-pods", + services: { + "9def6980-7ca2-4738-8c66-c2bcae5b9111": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["pods"], + verbs: ["get", "list", "watch"] + } + ], + name: "edge-stack-agent-pods", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + }, + traits: { + meshmap: { + edges: [], + id: "9def6980-7ca2-4738-8c66-c2bcae5b9111", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -309.5739517738905, posY: 169.12258581628592 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -309.5739517738905, y: 169.12258581628592 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "cca9bba7-04c3-4860-8d69-4cc317d31bd2", + type: "RoleBinding", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-apiext", + services: { + "cca9bba7-04c3-4860-8d69-4cc317d31bd2": { + namespace: "emissary-system", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "edge-stack-apiext" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "edge-stack", + namespace: "ambassador" + } + ], + name: "edge-stack-apiext", + namespace: "emissary-system", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [], + id: "cca9bba7-04c3-4860-8d69-4cc317d31bd2", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1001 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: 346.8727982756046, posY: 23.40760899878753 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + }, + inventoryLength: 0 + }, + position: { x: 347.6227982756046, y: 23.404392608812962 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "bce4ed54-de41-4e1b-9a89-1ca92f0c2186", + type: "Secret", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "bce4ed54-de41-4e1b-9a89-1ca92f0c2186": { + namespace: "ambassador", + settings: { + data: { "license-key": "" }, + type: "Opaque", + name: "edge-stack", + namespace: "ambassador" + }, + traits: { + meshmap: { + edges: [], + id: "bce4ed54-de41-4e1b-9a89-1ca92f0c2186", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "shield", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-clip": "node", + "background-image-containment": "over", + "background-opacity": "0", + height: 32, + padding: 1, + width: 32, + "z-index": 1001 + }, + styles: + '{"height":32,"width":32,"background-clip":"node","background-image-containment":"over","padding":1,"background-opacity":"0"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/secret-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/secret-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/secret-white.svg" + }, + position: { posX: 191.18067179070817, posY: -209.99321184416115 }, + whiteboardData: { style: {} } + } + }, + type: "Secret" + } + } + }, + inventoryLength: 0 + }, + position: { x: 191.18067179070817, y: -209.99321184416115 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "19cbe38e-f319-4ad2-bdab-10f1e02ae8e4", + type: "RateLimitService", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "edge-stack-ratelimit", + services: { + "19cbe38e-f319-4ad2-bdab-10f1e02ae8e4": { + namespace: "ambassador", + settings: { + spec: { + ambassador_id: [], + protocol_version: "v3", + service: "127.0.0.1:8500" + }, + name: "edge-stack-ratelimit", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "19cbe38e-f319-4ad2-bdab-10f1e02ae8e4", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: 29.745396893574124, posY: 103.43659795661924 }, + whiteboardData: { style: {} } + } + }, + type: "RateLimitService" + } + } + }, + inventoryLength: 0 + }, + position: { x: 29.745396893574124, y: 103.43659795661924 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "9b50fcf5-b779-487a-b9b9-abf11867ac39", + type: "Mapping", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "edge-stack-devportal-api", + services: { + "9b50fcf5-b779-487a-b9b9-abf11867ac39": { + namespace: "ambassador", + settings: { + spec: { + hostname: "*", + prefix: "/openapi/", + rewrite: "", + service: "127.0.0.1:8500" + }, + name: "edge-stack-devportal-api", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "9b50fcf5-b779-487a-b9b9-abf11867ac39", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: -83.61922835879767, posY: 30.872046365596436 }, + whiteboardData: { style: {} } + } + }, + type: "Mapping" + } + } + }, + inventoryLength: 0 + }, + position: { x: -83.61922835879767, y: 30.872046365596436 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "72d5f647-0743-4556-b67b-977a43fd9c16", + type: "ServiceAccount", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "72d5f647-0743-4556-b67b-977a43fd9c16": { + namespace: "ambassador", + settings: { + name: "edge-stack", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "a5057394-11fe-4054-be97-c49522ca222b", + metadata: { binded_by: "6f0697b8-61db-4db7-a1be-e3442b6513a7" }, + source: "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a", + subType: "Permission", + target: "72d5f647-0743-4556-b67b-977a43fd9c16" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "41b8e93f-9c0b-4d35-8c44-dbc7712c34bf", + metadata: { binded_by: "cca9bba7-04c3-4860-8d69-4cc317d31bd2" }, + source: "57c11961-03d6-4931-83e8-4aecf19c5d07", + subType: "Permission", + target: "72d5f647-0743-4556-b67b-977a43fd9c16" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "72d5f647-0743-4556-b67b-977a43fd9c16", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 264.54872163442394, posY: 23.760657445153402 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + }, + inventoryLength: 0 + }, + position: { x: 264.54872163442394, y: 23.760657445153402 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b2f3d75e-28fe-4359-b0b2-2287ced3d53c", + type: "RoleBinding", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-config", + services: { + "b2f3d75e-28fe-4359-b0b2-2287ced3d53c": { + namespace: "ambassador", + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "Role", + name: "edge-stack-agent-config" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "edge-stack-agent", + namespace: "ambassador" + } + ], + name: "edge-stack-agent-config", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [], + id: "b2f3d75e-28fe-4359-b0b2-2287ced3d53c", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1001 + }, + styles: + '{"height":"25px","width":"25px","x":"7", "y":"7","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/rolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/rolebinding-white.svg" + }, + position: { posX: 208.93602291007795, posY: -74.73274401170643 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "RoleBinding" + } + } + }, + inventoryLength: 0 + }, + position: { x: 209.68602291007795, y: -74.53655992708474 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "566e169e-7254-45af-b507-1130adc5fd5b", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-deployments", + services: { + "566e169e-7254-45af-b507-1130adc5fd5b": { + settings: { + rules: [ + { + "api Groups": ["apps", "extensions"], + resources: ["deployments"], + verbs: ["get", "list", "watch"] + } + ], + name: "edge-stack-agent-deployments", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + }, + traits: { + meshmap: { + edges: [], + id: "566e169e-7254-45af-b507-1130adc5fd5b", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -195.09674333732244, posY: 234.91026827368745 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -195.09674333732244, y: 234.91026827368745 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e1a6aac1-3112-420f-b646-09dd7f71b29f", + type: "ServiceAccount", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent", + services: { + "e1a6aac1-3112-420f-b646-09dd7f71b29f": { + namespace: "ambassador", + settings: { + name: "edge-stack-agent", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "6c978563-edd7-4c16-a09d-a1c63857df56", + metadata: { binded_by: "52adbc0e-45f3-444d-80c5-2214aa2c7efc" }, + source: "2a269e24-8a45-4b31-b1bd-bc3ab24943da", + subType: "Permission", + target: "e1a6aac1-3112-420f-b646-09dd7f71b29f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "b512a101-6b54-4aa5-b8ce-66fc772bb362", + metadata: { binded_by: "b2f3d75e-28fe-4359-b0b2-2287ced3d53c" }, + source: "03a72188-6643-4314-8c2a-0da6f6135675", + subType: "Permission", + target: "e1a6aac1-3112-420f-b646-09dd7f71b29f" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "e1a6aac1-3112-420f-b646-09dd7f71b29f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 5 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 124.12767846780564, posY: -96.91680724195632 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + }, + inventoryLength: 0 + }, + position: { x: 124.12767846780564, y: -96.91680724195632 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + type: "Service", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "85d2f80c-eb5a-489e-89d7-5ad7c14142e1": { + namespace: "ambassador", + settings: { + spec: { + ports: [ + { name: "http", port: 80, "target Port": 8080 }, + { name: "https", port: 443, "target Port": 8443 } + ], + selector: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack", + profile: "main" + }, + type: "LoadBalancer" + }, + name: "edge-stack", + namespace: "ambassador", + labels: { + "app.kubernetes.io/component": "ambassador-service", + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + }, + annotations: { + "a8r.io/bugs": "https://github.com/datawire/ambassador/issues", + "a8r.io/chat": "http://a8r.io/Slack", + "a8r.io/dependencies": "edge-stack-redis.ambassador", + "a8r.io/description": + "The Ambassador Edge Stack goes beyond traditional API Gateways and Ingress Controllers with the advanced edge features needed to support developer self-service and full-cycle development.", + "a8r.io/documentation": + "https://www.getambassador.io/docs/edge-stack/latest/", + "a8r.io/owner": "Ambassador Labs", + "a8r.io/repository": "github.com/datawire/ambassador", + "a8r.io/support": "https://www.getambassador.io/about-us/support/" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "d11b96ae-0cf4-4e4c-b9a3-50507b62d79e", + metadata: { port: 80, protocol: "TCP" }, + source: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + subType: "Network", + target: "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "2e82a347-0bab-4ed2-ac40-d413c256bab8", + metadata: { port: 80, protocol: "TCP" }, + source: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + subType: "Network", + target: "7820034f-bd39-454e-b215-5bb8af95c405" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 1001 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -324.05067925900386, posY: -207.89690283748368 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + }, + inventoryLength: 0 + }, + position: { x: -324.05067925900386, y: -207.89690283748368 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "36e37b78-07b2-41bc-bdbe-2810d680a0f5", + type: "Namespace", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "ambassador", + services: { + "36e37b78-07b2-41bc-bdbe-2810d680a0f5": { + settings: { name: "ambassador", labels: { product: "aes" } }, + traits: { + meshmap: { + edges: [], + id: "36e37b78-07b2-41bc-bdbe-2810d680a0f5", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-image": "none", + "background-opacity": 0.5, + "border-style": "dashed", + "border-width": 2, + "z-index": 1001 + }, + styles: + '{"background-image":"none","border-width":2,"border-style":"dashed","background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/namespace-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/namespace-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/namespace-white.svg" + }, + position: { posX: 342.75291302579984, posY: -73.67563715459627 }, + whiteboardData: { style: {} } + } + }, + type: "Namespace" + } + } + }, + inventoryLength: 0 + }, + position: { x: 342.75291302579984, y: -73.67563715459627 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "127a1758-2127-4a41-9424-7cfad71e1284", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-aes", + services: { + "127a1758-2127-4a41-9424-7cfad71e1284": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["secrets"], + verbs: ["get", "list", "watch", "create", "update"] + }, + { + "api Groups": [""], + resources: ["events"], + verbs: ["get", "list", "watch", "create", "patch"] + }, + { + "api Groups": ["coordination.k8s.io"], + resources: ["leases"], + verbs: ["get", "create", "update"] + }, + { + "api Groups": [""], + resources: ["endpoints"], + verbs: ["get", "list", "watch", "create", "update"] + } + ], + name: "edge-stack-aes", + labels: { + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack" + } + }, + traits: { + meshmap: { + edges: [], + id: "127a1758-2127-4a41-9424-7cfad71e1284", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -253.87549494996264, posY: 311.5619700135976 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -253.87549494996264, y: 311.5619700135976 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "52adbc0e-45f3-444d-80c5-2214aa2c7efc", + type: "ClusterRoleBinding", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent", + services: { + "52adbc0e-45f3-444d-80c5-2214aa2c7efc": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "edge-stack-agent" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "edge-stack-agent", + namespace: "ambassador" + } + ], + name: "edge-stack-agent", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [], + id: "52adbc0e-45f3-444d-80c5-2214aa2c7efc", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "25px", + width: "25px", + x: "7", + y: "7", + "z-index": 1001 + }, + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 7.458636181584694, posY: -95.56068143070384 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + }, + inventoryLength: 0 + }, + position: { x: 7.458636181584694, y: -95.56068143070384 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "c460e7a0-abba-4480-afca-a347a6087bf7", + type: "Service", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-redis", + services: { + "c460e7a0-abba-4480-afca-a347a6087bf7": { + namespace: "ambassador", + settings: { + spec: { + ports: [{ port: 6379, "target Port": 6379 }], + selector: { service: "ambassador-redis" }, + type: "ClusterIP" + }, + name: "edge-stack-redis", + namespace: "ambassador", + labels: { product: "aes" }, + annotations: { + "a8r.io/bugs": "https://github.com/datawire/ambassador/issues", + "a8r.io/chat": "http://a8r.io/Slack", + "a8r.io/dependencies": "None", + "a8r.io/description": + "The Ambassador Edge Stack Redis store for auth and rate limiting, among other things.", + "a8r.io/documentation": + "https://www.getambassador.io/docs/edge-stack/latest/", + "a8r.io/owner": "Ambassador Labs", + "a8r.io/repository": "github.com/datawire/ambassador", + "a8r.io/support": "https://www.getambassador.io/about-us/support/" + } + }, + traits: { + meshmap: { + edges: [], + id: "c460e7a0-abba-4480-afca-a347a6087bf7", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 1001 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -7.349259242902012, posY: -212.33003514685115 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + }, + inventoryLength: 0 + }, + position: { x: -7.349259242902012, y: -212.33003514685115 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f7e695ff-aee9-4b53-9433-ab7660f15a77", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-configmaps", + services: { + "f7e695ff-aee9-4b53-9433-ab7660f15a77": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["configmaps"], + verbs: ["get", "list", "watch"] + } + ], + name: "edge-stack-agent-configmaps", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + }, + traits: { + meshmap: { + edges: [], + id: "f7e695ff-aee9-4b53-9433-ab7660f15a77", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -303.1479223195309, posY: 99.20738766868892 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -303.1479223195309, y: 99.20738766868892 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d13c234a-efae-42ec-9884-3d08c65136c9", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-endpoints", + services: { + "d13c234a-efae-42ec-9884-3d08c65136c9": { + settings: { + rules: [ + { + "api Groups": [""], + resources: ["endpoints"], + verbs: ["get", "list", "watch"] + } + ], + name: "edge-stack-agent-endpoints", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + }, + traits: { + meshmap: { + edges: [], + id: "d13c234a-efae-42ec-9884-3d08c65136c9", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -199.36898475681346, posY: 31.00276479562943 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -199.36898475681346, y: 31.00276479562943 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "127435b1-2c1e-4480-a448-706b70490870", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-crd", + services: { + "127435b1-2c1e-4480-a448-706b70490870": { + settings: { + rules: [ + { + "api Groups": ["apiextensions.k8s.io"], + resources: ["customresourcedefinitions"], + verbs: ["get", "list", "watch", "delete"] + } + ], + name: "edge-stack-crd", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack" + } + }, + traits: { + meshmap: { + edges: [], + id: "127435b1-2c1e-4480-a448-706b70490870", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -305.51419228489164, posY: 30.3148818791473 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -305.51419228489164, y: 30.3148818791473 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "6f0697b8-61db-4db7-a1be-e3442b6513a7", + type: "ClusterRoleBinding", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "6f0697b8-61db-4db7-a1be-e3442b6513a7": { + settings: { + "role Ref": { + "api Group": "rbac.authorization.k8s.io", + kind: "ClusterRole", + name: "edge-stack" + }, + subjects: [ + { + kind: "ServiceAccount", + name: "edge-stack", + namespace: "ambassador" + } + ], + name: "edge-stack", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [], + id: "6f0697b8-61db-4db7-a1be-e3442b6513a7", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + styles: '{"height":"25px","width":"25px","x":"7", "y":"7"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrolebinding-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrolebinding-white.svg" + }, + position: { posX: 209.75345392287068, posY: 91.56692831691079 }, + whiteboardData: { + style: { height: 10.5, width: 10.5, "z-index": 1000 } + } + } + }, + type: "ClusterRoleBinding" + } + } + }, + inventoryLength: 0 + }, + position: { x: 209.75345392287068, y: 91.56692831691079 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: false, + pannable: false, + classes: "" + }, + { + data: { + id: "6ff12d76-a77d-4b52-afd6-d526e1bf11e0", + type: "Mapping", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "edge-stack-devportal-demo", + services: { + "6ff12d76-a77d-4b52-afd6-d526e1bf11e0": { + namespace: "ambassador", + settings: { + spec: { + hostname: "*", + prefix: "/docs/", + rewrite: "/docs/", + service: "127.0.0.1:8500" + }, + name: "edge-stack-devportal-demo", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "6ff12d76-a77d-4b52-afd6-d526e1bf11e0", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: -21.97511940973679, posY: 264.7527107229234 }, + whiteboardData: { style: {} } + } + }, + type: "Mapping" + } + } + }, + inventoryLength: 0 + }, + position: { x: -21.97511940973679, y: 264.7527107229234 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a": { + settings: { + "aggregation Rule": { + "cluster Role Selectors": [ + { + "match Labels": { + "rbac.getambassador.io/role-group": "edge-stack" + } + } + ] + }, + rules: [], + name: "edge-stack", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "a5057394-11fe-4054-be97-c49522ca222b", + metadata: { binded_by: "6f0697b8-61db-4db7-a1be-e3442b6513a7" }, + source: "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a", + subType: "Permission", + target: "72d5f647-0743-4556-b67b-977a43fd9c16" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: 154.58430395518326, posY: 159.83585887795064 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: 154.58430395518326, y: 159.83585887795064 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7820034f-bd39-454e-b215-5bb8af95c405", + type: "Deployment", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack", + services: { + "7820034f-bd39-454e-b215-5bb8af95c405": { + namespace: "ambassador", + settings: { + spec: { + "progress Deadline Seconds": 600, + replicas: 1, + selector: { + "match Labels": { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/name": "edge-stack" + } + }, + strategy: { type: "RollingUpdate" }, + template: { + metadata: { + annotations: { + "consul.hashicorp.com/connect-inject": "false", + "sidecar.istio.io/inject": "false" + }, + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + profile: "main" + } + }, + spec: { + affinity: { + "pod Anti Affinity": { + "preferred During Scheduling Ignored During Execution": [ + { + "pod Affinity Term": { + "label Selector": { + "match Labels": { service: "ambassador" } + }, + "topology Key": "kubernetes.io/hostname" + }, + weight: 100 + } + ] + } + }, + containers: [ + { + env: [ + { + name: "AMBASSADOR_NAMESPACE", + "value From": { + "field Ref": { "field Path": "metadata.namespace" } + } + }, + { + name: "AGENT_CONFIG_RESOURCE_NAME", + value: "edge-stack-agent-cloud-token" + }, + { name: "AMBASSADOR_DRAIN_TIME", value: "600" }, + { + name: "AMBASSADOR_INTERNAL_URL", + value: "https://127.0.0.1:8443" + }, + { name: "POLL_EVERY_SECS", value: "60" }, + { name: "REDIS_URL", value: "edge-stack-redis:6379" } + ], + image: "docker.io/datawire/aes:3.11.0", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + "failure Threshold": 5, + "http Get": { + path: "/ambassador/v0/check_alive", + port: "admin" + }, + "initial Delay Seconds": 60, + "period Seconds": 10 + }, + name: "aes", + ports: [ + { "container Port": 8080, name: "http" }, + { "container Port": 8443, name: "https" }, + { "container Port": 8877, name: "admin" } + ], + "readiness Probe": { + "failure Threshold": 5, + "http Get": { + path: "/ambassador/v0/check_ready", + port: "admin" + }, + "initial Delay Seconds": 60, + "period Seconds": 10 + }, + resources: { + limits: { cpu: "1000m", memory: "600Mi" }, + requests: { cpu: "200m", memory: "300Mi" } + }, + "security Context": { "allow Privilege Escalation": false }, + "volume Mounts": [ + { + "mount Path": "/tmp/ambassador-pod-info", + name: "ambassador-pod-info", + "read Only": true + } + ] + } + ], + "dns Policy": "ClusterFirst", + "host Network": false, + "image Pull Secrets": [], + "init Containers": [ + { + args: [ + 'deployment_name="emissary-apiext"\ndeployment_namespace="emissary-system"\nwhile true; do\n echo "checking if deployment/$deployment_name in namespace: $deployment_namespace exists."\n if kubectl get deployment "$deployment_name" -n $deployment_namespace > /dev/null 2>&1; then\n echo "$deployment_name.$deployment_namespace exists."\n echo "checking if $deployment_name.$deployment_namespace is fully available..."\n kubectl wait --for=condition=available deployment/"$deployment_name" -n $deployment_namespace --timeout=5m\n if [ $? -eq 0 ]; then\n echo "$deployment_name.$deployment_namespace is available"\n while true; do\n desired_replicas=$(kubectl get deployment $deployment_name -n $deployment_namespace -o jsonpath=\'{.spec.replicas}\')\n current_replicas=$(kubectl get deployment $deployment_name -n $deployment_namespace -o jsonpath=\'{.status.replicas}\')\n if [[ $current_replicas != $desired_replicas ]]; then\n echo "$deployment_name.$deployment_namespace is in the process of restarting. Have: $current_replicas, want $desired_replicas"\n sleep 3\n else\n echo "$deployment_name.$deployment_namespace is fully ready and not currently restarting. Have: $current_replicas, want $desired_replicas"\n break\n fi\n done\n break\n else\n echo "$deployment_name.$deployment_namespace did not become available within the timeout"\n fi\n else\n echo "$deployment_name.$deployment_namespace does not exist yet. Waiting..."\n sleep 3\n fi\ndone\n' + ], + command: ["/bin/sh", "-c"], + image: "istio/kubectl:1.5.10", + "image Pull Policy": "IfNotPresent", + name: "wait-for-apiext", + "security Context": { "run As User": 8888 } + } + ], + "restart Policy": "Always", + "security Context": { "run As User": 8888 }, + "service Account Name": "edge-stack", + "termination Grace Period Seconds": 0, + volumes: [ + { + "downward API": { + items: [ + { + "field Ref": { "field Path": "metadata.labels" }, + path: "labels" + } + ] + }, + name: "ambassador-pod-info" + } + ] + } + } + }, + name: "edge-stack", + namespace: "ambassador", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "f064b241-19b0-4c0d-a7c6-dedc9a23f366", + metadata: { port: 8877, protocol: "TCP" }, + source: "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4", + subType: "Network", + target: "7820034f-bd39-454e-b215-5bb8af95c405" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + }, + { + data: { + id: "2e82a347-0bab-4ed2-ac40-d413c256bab8", + metadata: { port: 80, protocol: "TCP" }, + source: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + subType: "Network", + target: "7820034f-bd39-454e-b215-5bb8af95c405" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "7820034f-bd39-454e-b215-5bb8af95c405", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 1001 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -315.6770218706996, posY: -92.38385319950324 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + }, + inventoryLength: 0 + }, + position: { x: -319.6770218706996, y: -87.38385319950324 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "f06c301f-0315-4d83-a8d4-f288fe5a90a2", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-applications", + services: { + "f06c301f-0315-4d83-a8d4-f288fe5a90a2": { + settings: { + rules: [ + { + "api Groups": ["argoproj.io"], + resources: ["applications"], + verbs: ["get", "list", "watch"] + } + ], + name: "edge-stack-agent-applications", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + }, + traits: { + meshmap: { + edges: [], + id: "f06c301f-0315-4d83-a8d4-f288fe5a90a2", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -308.7925479375617, posY: 242.75817057380712 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -308.7925479375617, y: 242.75817057380712 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "009e0e4b-f78e-4ac7-b694-1ab69df6df2e", + type: "ClusterRole", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-agent-rollouts", + services: { + "009e0e4b-f78e-4ac7-b694-1ab69df6df2e": { + settings: { + rules: [ + { + "api Groups": ["argoproj.io"], + resources: ["rollouts", "rollouts/status"], + verbs: ["get", "list", "watch", "patch"] + } + ], + name: "edge-stack-agent-rollouts", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack-agent", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack-agent" + } + }, + traits: { + meshmap: { + edges: [], + id: "009e0e4b-f78e-4ac7-b694-1ab69df6df2e", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: false, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/clusterrole-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/clusterrole-white.svg" + }, + position: { posX: -197.79571950353298, posY: 100.70236666790146 }, + whiteboardData: { style: {} } + } + }, + type: "ClusterRole" + } + } + }, + inventoryLength: 0 + }, + position: { x: -197.79571950353298, y: 100.70236666790146 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "406be56e-59bf-4d9d-9804-373299246102", + type: "AuthService", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "edge-stack-auth", + services: { + "406be56e-59bf-4d9d-9804-373299246102": { + namespace: "ambassador", + settings: { + spec: { + allow_request_body: false, + auth_service: "127.0.0.1:8500", + proto: "grpc", + protocol_version: "v3", + status_on_error: { code: 504 } + }, + name: "edge-stack-auth", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "406be56e-59bf-4d9d-9804-373299246102", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: -86.47117998364122, posY: 197.7352145639211 }, + whiteboardData: { style: {} } + } + }, + type: "AuthService" + } + } + }, + inventoryLength: 0 + }, + position: { x: -86.47117998364122, y: 197.7352145639211 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "7f1fb9dc-fa87-433d-92b8-6ca923988187", + type: "Mapping", + meshType: "contrail-analytics", + model: "contrail-analytics", + config: { + name: "edge-stack-devportal-assets", + services: { + "7f1fb9dc-fa87-433d-92b8-6ca923988187": { + namespace: "ambassador", + settings: { + spec: { + add_response_headers: { + "cache-control": { + append: false, + value: "public, max-age=3600, immutable" + } + }, + hostname: "*", + prefix: "/documentation/(assets|styles)/(.*)(.css)", + prefix_regex: true, + regex_rewrite: { + pattern: "/documentation/(.*)", + substitution: "/docs/\\1" + }, + service: "127.0.0.1:8500" + }, + name: "edge-stack-devportal-assets", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "7f1fb9dc-fa87-433d-92b8-6ca923988187", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isNamespaced: true, + primaryColor: "#00B39F", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 1001 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/contrail-analytics/color/advancedcronjob-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/aws-node-termination-handler-2/white/terminator-white.svg" + }, + position: { posX: 31.515573404609967, posY: 27.258787412602064 }, + whiteboardData: { style: {} } + } + }, + type: "Mapping" + } + } + }, + inventoryLength: 0 + }, + position: { x: 31.515573404609967, y: 27.258787412602064 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "57c11961-03d6-4931-83e8-4aecf19c5d07", + type: "Role", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-apiext", + services: { + "57c11961-03d6-4931-83e8-4aecf19c5d07": { + namespace: "emissary-system", + settings: { + rules: [ + { + "api Groups": ["apps"], + resources: ["deployments"], + verbs: ["get", "list", "watch"] + } + ], + name: "edge-stack-apiext", + namespace: "emissary-system", + labels: { + "app.kubernetes.io/instance": "edge-stack", + "app.kubernetes.io/managed-by": "getambassador.io", + "app.kubernetes.io/name": "edge-stack", + "app.kubernetes.io/part-of": "edge-stack", + product: "aes", + "rbac.getambassador.io/role-group": "edge-stack" + } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "41b8e93f-9c0b-4d35-8c44-dbc7712c34bf", + metadata: { binded_by: "cca9bba7-04c3-4860-8d69-4cc317d31bd2" }, + source: "57c11961-03d6-4931-83e8-4aecf19c5d07", + subType: "Permission", + target: "72d5f647-0743-4556-b67b-977a43fd9c16" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + id: "57c11961-03d6-4931-83e8-4aecf19c5d07", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + height: "22px", + width: "22px", + x: "8.5", + y: "7.5", + "z-index": 1001 + }, + styles: + '{"height":"22px", "width":"22px", "x":"8.5", "y":"7.5","z-index":4}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/role-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/role-white.svg" + }, + position: { posX: 430.90938215830056, posY: 23.04721643092434 }, + whiteboardData: { style: {} } + } + }, + type: "Role" + } + } + }, + inventoryLength: 0 + }, + position: { x: 430.90938215830056, y: 23.04721643092434 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2ec38d0f-8c4e-4440-b3f0-991a64b8aed3", + type: "Deployment", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "edge-stack-redis", + services: { + "2ec38d0f-8c4e-4440-b3f0-991a64b8aed3": { + namespace: "ambassador", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { service: "ambassador-redis" } }, + template: { + metadata: { labels: { service: "ambassador-redis" } }, + spec: { + containers: [ + { + image: "redis:5.0.1", + "image Pull Policy": "IfNotPresent", + name: "redis", + resources: {} + } + ], + "restart Policy": "Always" + } + } + }, + name: "edge-stack-redis", + namespace: "ambassador", + labels: { product: "aes" } + }, + traits: { + meshmap: { + edges: [], + id: "2ec38d0f-8c4e-4440-b3f0-991a64b8aed3", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 1001 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -105.5722605330142, posY: -207.37198914445776 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + }, + inventoryLength: 0 + }, + position: { x: -109.5722605330142, y: -202.37198914445776 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + elementType: "FIELD_REF_NODE", + label: "spec.template.spec.containers[0]", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + schemaFragment: { + description: + "A single application container that you want to run within a pod.", + properties: { + args: { + description: + 'Arguments to the entrypoint. The container image\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + command: { + description: + 'Entrypoint array. Not executed within a shell. The container image\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + env: { + description: + "List of environment variables to set in the container. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env Var represents an environment variable present in a Container.", + properties: { + name: { + default: "", + description: + "Name of the environment variable. Must be a C_IDENTIFIER.", + type: "string" + }, + value: { + description: + 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".', + type: "string" + }, + "value From": { + allOf: [ + { + description: + "Env Var Source represents a source for the value of an Env Var.", + properties: { + "config Map Key Ref": { + allOf: [ + { + description: "Selects a key from a Config Map.", + properties: { + key: { + default: "", + description: "The key to select.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: "Selects a key of a Config Map." + }, + "field Ref": { + allOf: [ + { + description: + "Object Field Selector selects an API Versioned field of an object.", + properties: { + "api Version": { + description: + 'Version of the schema the Field Path is written in terms of, defaults to "v1".', + type: "string" + }, + "field Path": { + default: "", + description: + "Path of the field to select in the specified API version.", + type: "string" + } + }, + required: ["field Path"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.node Name, spec.service Account Name, status.host IP, status.pod IP, status.pod I Ps." + }, + "resource Field Ref": { + allOf: [ + { + description: + "Resource Field Selector represents container resources (cpu, memory) and their output format", + properties: { + "container Name": { + description: + "Container name: required for volumes, optional for env vars", + type: "string" + }, + divisor: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [ + { type: "string" }, + { type: "number" } + ] + } + ], + default: {}, + description: + 'Specifies the output format of the exposed resources, defaults to "1"' + }, + resource: { + default: "", + description: "Required: resource to select", + type: "string" + } + }, + required: ["resource"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." + }, + "secret Key Ref": { + allOf: [ + { + description: + "Secret Key Selector selects a key of a Secret.", + properties: { + key: { + default: "", + description: + "The key of the secret to select from. Must be a valid secret key.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a key of a secret in the pod's namespace" + } + }, + type: "object" + } + ], + description: + "Source for the environment variable's value. Cannot be used if value is not empty." + } + }, + required: ["name"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "env From": { + description: + "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env From Source represents the source of a set of Config Maps", + properties: { + "config Map Ref": { + allOf: [ + { + description: + "Config Map Env Source selects a Config Map to populate the environment variables with. The contents of the target Config Map's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Config Map to select from" + }, + prefix: { + description: + "An optional identifier to prepend to each key in the Config Map. Must be a C_IDENTIFIER.", + type: "string" + }, + "secret Ref": { + allOf: [ + { + description: + "Secret Env Source selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Secret to select from" + } + }, + type: "object" + } + ], + default: {} + }, + type: "array" + }, + image: { + description: + "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and Stateful Sets.", + type: "string" + }, + "image Pull Policy": { + description: + 'Image pull policy. One of Always, Never, If Not Present. Defaults to Always if :latest tag is specified, or If Not Present otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images Possible enum values: - `"Always"` means that kubelet always attempts to pull the latest image. Container will fail If the pull fails. - `"If Not Present"` means that kubelet pulls if the image isn\'t present on disk. Container will fail if the image isn\'t present and the pull fails. - `"Never"` means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn\'t present', + enum: ["Always", "IfNotPresent", "Never"], + type: "string" + }, + lifecycle: { + allOf: [ + { + description: + "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the Post Start and Pre Stop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + properties: { + "post Start": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Post Start is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + }, + "pre Stop": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Pre Stop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the Pre Stop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + } + }, + type: "object" + } + ], + description: + "Actions that the management system should take in response to container lifecycle events. Cannot be updated." + }, + "liveness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + name: { + default: "", + description: + "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + type: "string" + }, + ports: { + description: + 'List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.', + items: { + allOf: [ + { + description: + "Container Port represents a network port in a single container.", + properties: { + "container Port": { + default: 0, + description: + "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + format: "int32", + type: "integer" + }, + "host IP": { + description: "What host IP to bind the external port to.", + type: "string" + }, + "host Port": { + description: + "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If Host Network is specified, this must match Container Port. Most containers do not need this.", + format: "int32", + type: "integer" + }, + name: { + description: + "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + type: "string" + }, + protocol: { + default: "TCP", + description: + 'Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". Possible enum values: - `"SCTP"` is the SCTP protocol. - `"TCP"` is the TCP protocol. - `"UDP"` is the UDP protocol.', + enum: ["SCTP", "TCP", "UDP"], + type: "string" + } + }, + required: ["container Port"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-list-map-keys": ["container Port", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "container Port", + "x-kubernetes-patch-strategy": "merge" + }, + "readiness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + resources: { + allOf: [ + { + description: + "Resource Requirements describes the compute resource requirements.", + properties: { + limits: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + }, + requests: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + } + }, + type: "object" + } + ], + default: {}, + description: + "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" + }, + "security Context": { + allOf: [ + { + description: + "Security Context holds security configuration that will be applied to a container. Some fields are present in both Security Context and Pod Security Context. When both are set, the values in Security Context take precedence.", + properties: { + "allow Privilege Escalation": { + description: + "Allow Privilege Escalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. Allow Privilege Escalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + capabilities: { + allOf: [ + { + description: + "Adds and removes POSIX capabilities from running containers.", + properties: { + add: { + description: "Added capabilities", + items: { default: "", type: "string" }, + type: "array" + }, + drop: { + description: "Removed capabilities", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: + "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." + }, + privileged: { + description: + "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "proc Mount": { + description: + "proc Mount denotes the type of proc mount to use for the containers. The default is Default Proc Mount which uses the container runtime defaults for readonly paths and masked paths. This requires the Proc Mount Type feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", + type: "string" + }, + "read Only Root Filesystem": { + description: + "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "run As Group": { + description: + "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "run As Non Root": { + description: + "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "boolean" + }, + "run As User": { + description: + "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "se Linux Options": { + allOf: [ + { + description: + "SE Linux Options are the labels to be applied to the container", + properties: { + level: { + description: + "Level is SE Linux level label that applies to the container.", + type: "string" + }, + role: { + description: + "Role is a SE Linux role label that applies to the container.", + type: "string" + }, + type: { + description: + "Type is a SE Linux type label that applies to the container.", + type: "string" + }, + user: { + description: + "User is a SE Linux user label that applies to the container.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The SE Linux context to be applied to the container. If unspecified, the container runtime will allocate a random SE Linux context for each container. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows." + }, + "seccomp Profile": { + allOf: [ + { + description: + "Seccomp Profile defines a pod/container's seccomp profile settings. Only one profile source may be set.", + properties: { + "localhost Profile": { + description: + 'localhost Profile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet\'s configured seccomp profile location. Must only be set if type is "Localhost".', + type: "string" + }, + type: { + default: "", + description: + 'type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. Runtime Default - the container runtime default profile should be used. Unconfined - no profile should be applied. Possible enum values: - `"Localhost"` indicates a profile defined in a file on the node should be used. The file\'s location relative to /seccomp. - `"Runtime Default"` represents the default container runtime seccomp profile. - `"Unconfined"` indicates no seccomp profile is applied (A.K.A. unconfined).', + enum: ["Localhost", "RuntimeDefault", "Unconfined"], + type: "string" + } + }, + required: ["type"], + type: "object", + "x-kubernetes-unions": [ + { + discriminator: "type", + "fields-to-discriminate By": { + "localhost Profile": "Localhost Profile" + } + } + ] + } + ], + description: + "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." + }, + "windows Options": { + allOf: [ + { + description: + "Windows Security Context Options contain Windows-specific options and credentials.", + properties: { + "gmsa Credential Spec": { + description: + "GMSA Credential Spec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSA Credential Spec Name field.", + type: "string" + }, + "gmsa Credential Spec Name": { + description: + "GMSA Credential Spec Name is the name of the GMSA credential spec to use.", + type: "string" + }, + "host Process": { + description: + "Host Process determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the Windows Host Process Containers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective Host Process value (it is not allowed to have a mix of Host Process containers and non-Host Process containers). In addition, if Host Process is true then Host Network must also be set to true.", + type: "boolean" + }, + "run As User Name": { + description: + "The User Name in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The Windows specific settings applied to all containers. If unspecified, the options from the Pod Security Context will be used. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is linux." + } + }, + type: "object" + } + ], + description: + "Security Context defines the security options the container should be run with. If set, the fields of Security Context override the equivalent fields of Pod Security Context. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + }, + "startup Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Startup Probe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the liveness Probe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + stdin: { + description: + "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + type: "boolean" + }, + "stdin Once": { + description: + "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdin Once is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + type: "boolean" + }, + "termination Message Path": { + description: + "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + type: "string" + }, + "termination Message Policy": { + description: + 'Indicate how the termination message should be populated. File will use the contents of termination Message Path to populate the container status message on both success and failure. Fallback To Logs On Error will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. Possible enum values: - `"Fallback To Logs On Error"` will read the most recent contents of the container logs for the container status message when the container exits with an error and the termination Message Path has no contents. - `"File"` is the default behavior and will set the container status message to the contents of the container\'s termination Message Path when the container exits.', + enum: ["FallbackToLogsOnError", "File"], + type: "string" + }, + tty: { + description: + "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + type: "boolean" + }, + "volume Devices": { + description: + "volume Devices is the list of block devices to be used by the container.", + items: { + allOf: [ + { + description: + "volume Device describes a mapping of a raw block device within a container.", + properties: { + "device Path": { + default: "", + description: + "device Path is the path inside of the container that the device will be mapped to.", + type: "string" + }, + name: { + default: "", + description: + "name must match the name of a persistent Volume Claim in the pod", + type: "string" + } + }, + required: ["name", "device Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "device Path", + "x-kubernetes-patch-strategy": "merge" + }, + "volume Mounts": { + description: + "Pod volumes to mount into the container's filesystem. Cannot be updated.", + items: { + allOf: [ + { + description: + "Volume Mount describes a mounting of a Volume within a container.", + properties: { + "mount Path": { + default: "", + description: + "Path within the container at which the volume should be mounted. Must not contain ':'.", + type: "string" + }, + "mount Propagation": { + description: + "mount Propagation determines how mounts are propagated from the host to container and the other way around. When not set, Mount Propagation None is used. This field is beta in 1.10.", + type: "string" + }, + name: { + default: "", + description: "This must match the Name of a Volume.", + type: "string" + }, + "read Only": { + description: + "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + type: "boolean" + }, + "sub Path": { + description: + "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + type: "string" + }, + "sub Path Expr": { + description: + "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to Sub Path but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). Sub Path Expr and Sub Path are mutually exclusive.", + type: "string" + } + }, + required: ["name", "mount Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "mount Path", + "x-kubernetes-patch-strategy": "merge" + }, + "working Dir": { + description: + "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + componentDefinition: { + id: "fcd41e59-cb70-481c-9302-9221e389087c", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + displayName: "Container", + description: "", + format: "JSON", + model: { + id: "b2626b4d-0761-57bb-b27a-9dc5339b0c86", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + name: "meshery-core", + displayName: "Meshery Core", + description: "", + status: "enabled", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + registrant: { hostname: "artifacthub" }, + category: { name: "Orchestration & Management", metadata: null }, + subCategory: "App Definition and Development", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + components: null, + relationships: null + }, + metadata: { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": false,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": false\n },\n "style": false\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: "", + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + component: { + kind: "Container", + version: "core.meshery.io/v1alpha1", + schema: "{}" + }, + duplicates: 6 + }, + parent: "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb", + id: "5be73225-ad10-42ed-a953-18233457dec8", + config: { + services: { + "5be73225-ad10-42ed-a953-18233457dec8": { settings: { name: "agent" } } + } + } + }, + position: { x: -214, y: -210.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "fieldRefNode" + }, + { + data: { + elementType: "FIELD_REF_NODE", + label: "spec.template.spec.containers[0]", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + schemaFragment: { + description: + "A single application container that you want to run within a pod.", + properties: { + args: { + description: + 'Arguments to the entrypoint. The container image\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + command: { + description: + 'Entrypoint array. Not executed within a shell. The container image\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + env: { + description: + "List of environment variables to set in the container. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env Var represents an environment variable present in a Container.", + properties: { + name: { + default: "", + description: + "Name of the environment variable. Must be a C_IDENTIFIER.", + type: "string" + }, + value: { + description: + 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".', + type: "string" + }, + "value From": { + allOf: [ + { + description: + "Env Var Source represents a source for the value of an Env Var.", + properties: { + "config Map Key Ref": { + allOf: [ + { + description: "Selects a key from a Config Map.", + properties: { + key: { + default: "", + description: "The key to select.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: "Selects a key of a Config Map." + }, + "field Ref": { + allOf: [ + { + description: + "Object Field Selector selects an API Versioned field of an object.", + properties: { + "api Version": { + description: + 'Version of the schema the Field Path is written in terms of, defaults to "v1".', + type: "string" + }, + "field Path": { + default: "", + description: + "Path of the field to select in the specified API version.", + type: "string" + } + }, + required: ["field Path"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.node Name, spec.service Account Name, status.host IP, status.pod IP, status.pod I Ps." + }, + "resource Field Ref": { + allOf: [ + { + description: + "Resource Field Selector represents container resources (cpu, memory) and their output format", + properties: { + "container Name": { + description: + "Container name: required for volumes, optional for env vars", + type: "string" + }, + divisor: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [ + { type: "string" }, + { type: "number" } + ] + } + ], + default: {}, + description: + 'Specifies the output format of the exposed resources, defaults to "1"' + }, + resource: { + default: "", + description: "Required: resource to select", + type: "string" + } + }, + required: ["resource"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." + }, + "secret Key Ref": { + allOf: [ + { + description: + "Secret Key Selector selects a key of a Secret.", + properties: { + key: { + default: "", + description: + "The key of the secret to select from. Must be a valid secret key.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a key of a secret in the pod's namespace" + } + }, + type: "object" + } + ], + description: + "Source for the environment variable's value. Cannot be used if value is not empty." + } + }, + required: ["name"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "env From": { + description: + "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env From Source represents the source of a set of Config Maps", + properties: { + "config Map Ref": { + allOf: [ + { + description: + "Config Map Env Source selects a Config Map to populate the environment variables with. The contents of the target Config Map's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Config Map to select from" + }, + prefix: { + description: + "An optional identifier to prepend to each key in the Config Map. Must be a C_IDENTIFIER.", + type: "string" + }, + "secret Ref": { + allOf: [ + { + description: + "Secret Env Source selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Secret to select from" + } + }, + type: "object" + } + ], + default: {} + }, + type: "array" + }, + image: { + description: + "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and Stateful Sets.", + type: "string" + }, + "image Pull Policy": { + description: + 'Image pull policy. One of Always, Never, If Not Present. Defaults to Always if :latest tag is specified, or If Not Present otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images Possible enum values: - `"Always"` means that kubelet always attempts to pull the latest image. Container will fail If the pull fails. - `"If Not Present"` means that kubelet pulls if the image isn\'t present on disk. Container will fail if the image isn\'t present and the pull fails. - `"Never"` means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn\'t present', + enum: ["Always", "IfNotPresent", "Never"], + type: "string" + }, + lifecycle: { + allOf: [ + { + description: + "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the Post Start and Pre Stop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + properties: { + "post Start": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Post Start is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + }, + "pre Stop": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Pre Stop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the Pre Stop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + } + }, + type: "object" + } + ], + description: + "Actions that the management system should take in response to container lifecycle events. Cannot be updated." + }, + "liveness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + name: { + default: "", + description: + "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + type: "string" + }, + ports: { + description: + 'List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.', + items: { + allOf: [ + { + description: + "Container Port represents a network port in a single container.", + properties: { + "container Port": { + default: 0, + description: + "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + format: "int32", + type: "integer" + }, + "host IP": { + description: "What host IP to bind the external port to.", + type: "string" + }, + "host Port": { + description: + "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If Host Network is specified, this must match Container Port. Most containers do not need this.", + format: "int32", + type: "integer" + }, + name: { + description: + "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + type: "string" + }, + protocol: { + default: "TCP", + description: + 'Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". Possible enum values: - `"SCTP"` is the SCTP protocol. - `"TCP"` is the TCP protocol. - `"UDP"` is the UDP protocol.', + enum: ["SCTP", "TCP", "UDP"], + type: "string" + } + }, + required: ["container Port"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-list-map-keys": ["container Port", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "container Port", + "x-kubernetes-patch-strategy": "merge" + }, + "readiness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + resources: { + allOf: [ + { + description: + "Resource Requirements describes the compute resource requirements.", + properties: { + limits: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + }, + requests: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + } + }, + type: "object" + } + ], + default: {}, + description: + "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" + }, + "security Context": { + allOf: [ + { + description: + "Security Context holds security configuration that will be applied to a container. Some fields are present in both Security Context and Pod Security Context. When both are set, the values in Security Context take precedence.", + properties: { + "allow Privilege Escalation": { + description: + "Allow Privilege Escalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. Allow Privilege Escalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + capabilities: { + allOf: [ + { + description: + "Adds and removes POSIX capabilities from running containers.", + properties: { + add: { + description: "Added capabilities", + items: { default: "", type: "string" }, + type: "array" + }, + drop: { + description: "Removed capabilities", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: + "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." + }, + privileged: { + description: + "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "proc Mount": { + description: + "proc Mount denotes the type of proc mount to use for the containers. The default is Default Proc Mount which uses the container runtime defaults for readonly paths and masked paths. This requires the Proc Mount Type feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", + type: "string" + }, + "read Only Root Filesystem": { + description: + "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "run As Group": { + description: + "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "run As Non Root": { + description: + "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "boolean" + }, + "run As User": { + description: + "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "se Linux Options": { + allOf: [ + { + description: + "SE Linux Options are the labels to be applied to the container", + properties: { + level: { + description: + "Level is SE Linux level label that applies to the container.", + type: "string" + }, + role: { + description: + "Role is a SE Linux role label that applies to the container.", + type: "string" + }, + type: { + description: + "Type is a SE Linux type label that applies to the container.", + type: "string" + }, + user: { + description: + "User is a SE Linux user label that applies to the container.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The SE Linux context to be applied to the container. If unspecified, the container runtime will allocate a random SE Linux context for each container. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows." + }, + "seccomp Profile": { + allOf: [ + { + description: + "Seccomp Profile defines a pod/container's seccomp profile settings. Only one profile source may be set.", + properties: { + "localhost Profile": { + description: + 'localhost Profile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet\'s configured seccomp profile location. Must only be set if type is "Localhost".', + type: "string" + }, + type: { + default: "", + description: + 'type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. Runtime Default - the container runtime default profile should be used. Unconfined - no profile should be applied. Possible enum values: - `"Localhost"` indicates a profile defined in a file on the node should be used. The file\'s location relative to /seccomp. - `"Runtime Default"` represents the default container runtime seccomp profile. - `"Unconfined"` indicates no seccomp profile is applied (A.K.A. unconfined).', + enum: ["Localhost", "RuntimeDefault", "Unconfined"], + type: "string" + } + }, + required: ["type"], + type: "object", + "x-kubernetes-unions": [ + { + discriminator: "type", + "fields-to-discriminate By": { + "localhost Profile": "Localhost Profile" + } + } + ] + } + ], + description: + "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." + }, + "windows Options": { + allOf: [ + { + description: + "Windows Security Context Options contain Windows-specific options and credentials.", + properties: { + "gmsa Credential Spec": { + description: + "GMSA Credential Spec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSA Credential Spec Name field.", + type: "string" + }, + "gmsa Credential Spec Name": { + description: + "GMSA Credential Spec Name is the name of the GMSA credential spec to use.", + type: "string" + }, + "host Process": { + description: + "Host Process determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the Windows Host Process Containers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective Host Process value (it is not allowed to have a mix of Host Process containers and non-Host Process containers). In addition, if Host Process is true then Host Network must also be set to true.", + type: "boolean" + }, + "run As User Name": { + description: + "The User Name in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The Windows specific settings applied to all containers. If unspecified, the options from the Pod Security Context will be used. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is linux." + } + }, + type: "object" + } + ], + description: + "Security Context defines the security options the container should be run with. If set, the fields of Security Context override the equivalent fields of Pod Security Context. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + }, + "startup Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Startup Probe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the liveness Probe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + stdin: { + description: + "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + type: "boolean" + }, + "stdin Once": { + description: + "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdin Once is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + type: "boolean" + }, + "termination Message Path": { + description: + "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + type: "string" + }, + "termination Message Policy": { + description: + 'Indicate how the termination message should be populated. File will use the contents of termination Message Path to populate the container status message on both success and failure. Fallback To Logs On Error will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. Possible enum values: - `"Fallback To Logs On Error"` will read the most recent contents of the container logs for the container status message when the container exits with an error and the termination Message Path has no contents. - `"File"` is the default behavior and will set the container status message to the contents of the container\'s termination Message Path when the container exits.', + enum: ["FallbackToLogsOnError", "File"], + type: "string" + }, + tty: { + description: + "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + type: "boolean" + }, + "volume Devices": { + description: + "volume Devices is the list of block devices to be used by the container.", + items: { + allOf: [ + { + description: + "volume Device describes a mapping of a raw block device within a container.", + properties: { + "device Path": { + default: "", + description: + "device Path is the path inside of the container that the device will be mapped to.", + type: "string" + }, + name: { + default: "", + description: + "name must match the name of a persistent Volume Claim in the pod", + type: "string" + } + }, + required: ["name", "device Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "device Path", + "x-kubernetes-patch-strategy": "merge" + }, + "volume Mounts": { + description: + "Pod volumes to mount into the container's filesystem. Cannot be updated.", + items: { + allOf: [ + { + description: + "Volume Mount describes a mounting of a Volume within a container.", + properties: { + "mount Path": { + default: "", + description: + "Path within the container at which the volume should be mounted. Must not contain ':'.", + type: "string" + }, + "mount Propagation": { + description: + "mount Propagation determines how mounts are propagated from the host to container and the other way around. When not set, Mount Propagation None is used. This field is beta in 1.10.", + type: "string" + }, + name: { + default: "", + description: "This must match the Name of a Volume.", + type: "string" + }, + "read Only": { + description: + "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + type: "boolean" + }, + "sub Path": { + description: + "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + type: "string" + }, + "sub Path Expr": { + description: + "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to Sub Path but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). Sub Path Expr and Sub Path are mutually exclusive.", + type: "string" + } + }, + required: ["name", "mount Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "mount Path", + "x-kubernetes-patch-strategy": "merge" + }, + "working Dir": { + description: + "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + componentDefinition: { + id: "fcd41e59-cb70-481c-9302-9221e389087c", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + displayName: "Container", + description: "", + format: "JSON", + model: { + id: "b2626b4d-0761-57bb-b27a-9dc5339b0c86", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + name: "meshery-core", + displayName: "Meshery Core", + description: "", + status: "enabled", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + registrant: { hostname: "artifacthub" }, + category: { name: "Orchestration & Management", metadata: null }, + subCategory: "App Definition and Development", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + components: null, + relationships: null + }, + metadata: { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": false,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": false\n },\n "style": false\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: "", + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + component: { + kind: "Container", + version: "core.meshery.io/v1alpha1", + schema: "{}" + }, + duplicates: 6 + }, + parent: "7820034f-bd39-454e-b215-5bb8af95c405", + id: "38554950-c97d-4c7c-93b5-8ed4c3f3442b", + config: { + services: { + "38554950-c97d-4c7c-93b5-8ed4c3f3442b": { settings: { name: "aes" } } + } + } + }, + position: { x: -319.6770218706996, y: -96.38385319950324 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "fieldRefNode" + }, + { + data: { + elementType: "FIELD_REF_NODE", + label: "spec.template.spec.containers[0]", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + schemaFragment: { + description: + "A single application container that you want to run within a pod.", + properties: { + args: { + description: + 'Arguments to the entrypoint. The container image\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + command: { + description: + 'Entrypoint array. Not executed within a shell. The container image\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell', + items: { default: "", type: "string" }, + type: "array" + }, + env: { + description: + "List of environment variables to set in the container. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env Var represents an environment variable present in a Container.", + properties: { + name: { + default: "", + description: + "Name of the environment variable. Must be a C_IDENTIFIER.", + type: "string" + }, + value: { + description: + 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".', + type: "string" + }, + "value From": { + allOf: [ + { + description: + "Env Var Source represents a source for the value of an Env Var.", + properties: { + "config Map Key Ref": { + allOf: [ + { + description: "Selects a key from a Config Map.", + properties: { + key: { + default: "", + description: "The key to select.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: "Selects a key of a Config Map." + }, + "field Ref": { + allOf: [ + { + description: + "Object Field Selector selects an API Versioned field of an object.", + properties: { + "api Version": { + description: + 'Version of the schema the Field Path is written in terms of, defaults to "v1".', + type: "string" + }, + "field Path": { + default: "", + description: + "Path of the field to select in the specified API version.", + type: "string" + } + }, + required: ["field Path"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.node Name, spec.service Account Name, status.host IP, status.pod IP, status.pod I Ps." + }, + "resource Field Ref": { + allOf: [ + { + description: + "Resource Field Selector represents container resources (cpu, memory) and their output format", + properties: { + "container Name": { + description: + "Container name: required for volumes, optional for env vars", + type: "string" + }, + divisor: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [ + { type: "string" }, + { type: "number" } + ] + } + ], + default: {}, + description: + 'Specifies the output format of the exposed resources, defaults to "1"' + }, + resource: { + default: "", + description: "Required: resource to select", + type: "string" + } + }, + required: ["resource"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." + }, + "secret Key Ref": { + allOf: [ + { + description: + "Secret Key Selector selects a key of a Secret.", + properties: { + key: { + default: "", + description: + "The key of the secret to select from. Must be a valid secret key.", + type: "string" + }, + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret or its key must be defined", + type: "boolean" + } + }, + required: ["key"], + type: "object", + "x-kubernetes-map-type": "atomic" + } + ], + description: + "Selects a key of a secret in the pod's namespace" + } + }, + type: "object" + } + ], + description: + "Source for the environment variable's value. Cannot be used if value is not empty." + } + }, + required: ["name"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "env From": { + description: + "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + items: { + allOf: [ + { + description: + "Env From Source represents the source of a set of Config Maps", + properties: { + "config Map Ref": { + allOf: [ + { + description: + "Config Map Env Source selects a Config Map to populate the environment variables with. The contents of the target Config Map's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Config Map must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Config Map to select from" + }, + prefix: { + description: + "An optional identifier to prepend to each key in the Config Map. Must be a C_IDENTIFIER.", + type: "string" + }, + "secret Ref": { + allOf: [ + { + description: + "Secret Env Source selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + properties: { + name: { + description: + "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + type: "string" + }, + optional: { + description: + "Specify whether the Secret must be defined", + type: "boolean" + } + }, + type: "object" + } + ], + description: "The Secret to select from" + } + }, + type: "object" + } + ], + default: {} + }, + type: "array" + }, + image: { + description: + "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and Stateful Sets.", + type: "string" + }, + "image Pull Policy": { + description: + 'Image pull policy. One of Always, Never, If Not Present. Defaults to Always if :latest tag is specified, or If Not Present otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images Possible enum values: - `"Always"` means that kubelet always attempts to pull the latest image. Container will fail If the pull fails. - `"If Not Present"` means that kubelet pulls if the image isn\'t present on disk. Container will fail if the image isn\'t present and the pull fails. - `"Never"` means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn\'t present', + enum: ["Always", "IfNotPresent", "Never"], + type: "string" + }, + lifecycle: { + allOf: [ + { + description: + "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the Post Start and Pre Stop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + properties: { + "post Start": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Post Start is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + }, + "pre Stop": { + allOf: [ + { + description: + "Lifecycle Handler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCP Socket must be specified.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "HTTP Get specifies the http request to perform." + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [ + { type: "integer" }, + { type: "string" } + ] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "Deprecated. TCP Socket is NOT supported as a Lifecycle Handler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." + } + }, + type: "object" + } + ], + description: + "Pre Stop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the Pre Stop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + } + }, + type: "object" + } + ], + description: + "Actions that the management system should take in response to container lifecycle events. Cannot be updated." + }, + "liveness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + name: { + default: "", + description: + "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + type: "string" + }, + ports: { + description: + 'List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.', + items: { + allOf: [ + { + description: + "Container Port represents a network port in a single container.", + properties: { + "container Port": { + default: 0, + description: + "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + format: "int32", + type: "integer" + }, + "host IP": { + description: "What host IP to bind the external port to.", + type: "string" + }, + "host Port": { + description: + "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If Host Network is specified, this must match Container Port. Most containers do not need this.", + format: "int32", + type: "integer" + }, + name: { + description: + "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + type: "string" + }, + protocol: { + default: "TCP", + description: + 'Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". Possible enum values: - `"SCTP"` is the SCTP protocol. - `"TCP"` is the TCP protocol. - `"UDP"` is the UDP protocol.', + enum: ["SCTP", "TCP", "UDP"], + type: "string" + } + }, + required: ["container Port"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-list-map-keys": ["container Port", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "container Port", + "x-kubernetes-patch-strategy": "merge" + }, + "readiness Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + resources: { + allOf: [ + { + description: + "Resource Requirements describes the compute resource requirements.", + properties: { + limits: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + }, + requests: { + additionalProperties: { + allOf: [ + { + description: + 'Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and As Int64() accessors. The serialization format is: ``` ::= (Note that may be empty, from the "" case in .) ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) ::= m | "" | k | M | G | T | P | E (Note that 1024 = 1Ki but 1000 = 1k; I didn\'t choose the capitalization.) ::= "e" | "E" ``` No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative. Examples: - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don\'t diff.) This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.', + oneOf: [{ type: "string" }, { type: "number" }] + } + ], + default: {} + }, + description: + "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + type: "object" + } + }, + type: "object" + } + ], + default: {}, + description: + "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" + }, + "security Context": { + allOf: [ + { + description: + "Security Context holds security configuration that will be applied to a container. Some fields are present in both Security Context and Pod Security Context. When both are set, the values in Security Context take precedence.", + properties: { + "allow Privilege Escalation": { + description: + "Allow Privilege Escalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. Allow Privilege Escalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + capabilities: { + allOf: [ + { + description: + "Adds and removes POSIX capabilities from running containers.", + properties: { + add: { + description: "Added capabilities", + items: { default: "", type: "string" }, + type: "array" + }, + drop: { + description: "Removed capabilities", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: + "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." + }, + privileged: { + description: + "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "proc Mount": { + description: + "proc Mount denotes the type of proc mount to use for the containers. The default is Default Proc Mount which uses the container runtime defaults for readonly paths and masked paths. This requires the Proc Mount Type feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", + type: "string" + }, + "read Only Root Filesystem": { + description: + "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", + type: "boolean" + }, + "run As Group": { + description: + "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "run As Non Root": { + description: + "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "boolean" + }, + "run As User": { + description: + "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows.", + format: "int64", + type: "integer" + }, + "se Linux Options": { + allOf: [ + { + description: + "SE Linux Options are the labels to be applied to the container", + properties: { + level: { + description: + "Level is SE Linux level label that applies to the container.", + type: "string" + }, + role: { + description: + "Role is a SE Linux role label that applies to the container.", + type: "string" + }, + type: { + description: + "Type is a SE Linux type label that applies to the container.", + type: "string" + }, + user: { + description: + "User is a SE Linux user label that applies to the container.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The SE Linux context to be applied to the container. If unspecified, the container runtime will allocate a random SE Linux context for each container. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is windows." + }, + "seccomp Profile": { + allOf: [ + { + description: + "Seccomp Profile defines a pod/container's seccomp profile settings. Only one profile source may be set.", + properties: { + "localhost Profile": { + description: + 'localhost Profile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet\'s configured seccomp profile location. Must only be set if type is "Localhost".', + type: "string" + }, + type: { + default: "", + description: + 'type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. Runtime Default - the container runtime default profile should be used. Unconfined - no profile should be applied. Possible enum values: - `"Localhost"` indicates a profile defined in a file on the node should be used. The file\'s location relative to /seccomp. - `"Runtime Default"` represents the default container runtime seccomp profile. - `"Unconfined"` indicates no seccomp profile is applied (A.K.A. unconfined).', + enum: ["Localhost", "RuntimeDefault", "Unconfined"], + type: "string" + } + }, + required: ["type"], + type: "object", + "x-kubernetes-unions": [ + { + discriminator: "type", + "fields-to-discriminate By": { + "localhost Profile": "Localhost Profile" + } + } + ] + } + ], + description: + "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." + }, + "windows Options": { + allOf: [ + { + description: + "Windows Security Context Options contain Windows-specific options and credentials.", + properties: { + "gmsa Credential Spec": { + description: + "GMSA Credential Spec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSA Credential Spec Name field.", + type: "string" + }, + "gmsa Credential Spec Name": { + description: + "GMSA Credential Spec Name is the name of the GMSA credential spec to use.", + type: "string" + }, + "host Process": { + description: + "Host Process determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the Windows Host Process Containers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective Host Process value (it is not allowed to have a mix of Host Process containers and non-Host Process containers). In addition, if Host Process is true then Host Network must also be set to true.", + type: "boolean" + }, + "run As User Name": { + description: + "The User Name in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in Pod Security Context. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence.", + type: "string" + } + }, + type: "object" + } + ], + description: + "The Windows specific settings applied to all containers. If unspecified, the options from the Pod Security Context will be used. If set in both Security Context and Pod Security Context, the value specified in Security Context takes precedence. Note that this field cannot be set when spec.os.name is linux." + } + }, + type: "object" + } + ], + description: + "Security Context defines the security options the container should be run with. If set, the fields of Security Context override the equivalent fields of Pod Security Context. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + }, + "startup Probe": { + allOf: [ + { + description: + "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + properties: { + exec: { + allOf: [ + { + description: + 'Exec Action describes a "run in container" action.', + properties: { + command: { + description: + "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + items: { default: "", type: "string" }, + type: "array" + } + }, + type: "object" + } + ], + description: "Exec specifies the action to take." + }, + "failure Threshold": { + description: + "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + format: "int32", + type: "integer" + }, + grpc: { + allOf: [ + { + properties: { + port: { + default: 0, + description: + "Port number of the g RPC service. Number must be in the range 1 to 65535.", + format: "int32", + type: "integer" + }, + service: { + default: "", + description: + "Service is the name of the service to place in the g RPC Health Check Request (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by g RPC.", + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: + "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPC Container Probe feature gate." + }, + "http Get": { + allOf: [ + { + description: + "HTTP Get Action describes an action based on HTTP Get requests.", + properties: { + host: { + description: + 'Host name to connect to, defaults to the pod IP. You probably want to set "Host" in http Headers instead.', + type: "string" + }, + "http Headers": { + description: + "Custom headers to set in the request. HTTP allows repeated headers.", + items: { + allOf: [ + { + description: + "HTTP Header describes a custom header to be used in HTTP probes", + properties: { + name: { + default: "", + description: "The header field name", + type: "string" + }, + value: { + default: "", + description: "The header field value", + type: "string" + } + }, + required: ["name", "value"], + type: "object" + } + ], + default: {} + }, + type: "array" + }, + path: { + description: "Path to access on the HTTP server.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + }, + scheme: { + description: + 'Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values: - `"HTTP"` means that the scheme used will be http:// - `"HTTPS"` means that the scheme used will be https://', + enum: ["HTTP", "HTTPS"], + type: "string" + } + }, + required: ["port"], + type: "object" + } + ], + description: "HTTP Get specifies the http request to perform." + }, + "initial Delay Seconds": { + description: + "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + }, + "period Seconds": { + description: + "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "success Threshold": { + description: + "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + format: "int32", + type: "integer" + }, + "tcp Socket": { + allOf: [ + { + description: + "TCP Socket Action describes an action based on opening a socket", + properties: { + host: { + description: + "Optional: Host name to connect to, defaults to the pod IP.", + type: "string" + }, + port: { + allOf: [ + { + description: + "Int Or String is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + format: "int-or-string", + oneOf: [{ type: "integer" }, { type: "string" }] + } + ], + default: {}, + description: + "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." + } + }, + required: ["port"], + type: "object" + } + ], + description: + "TCP Socket specifies an action involving a TCP port." + }, + "termination Grace Period Seconds": { + description: + "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's termination Grace Period Seconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling Probe Termination Grace Period feature gate. Minimum value is 1. spec.termination Grace Period Seconds is used if unset.", + format: "int64", + type: "integer" + }, + "timeout Seconds": { + description: + "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + format: "int32", + type: "integer" + } + }, + type: "object" + } + ], + description: + "Startup Probe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the liveness Probe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, + stdin: { + description: + "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + type: "boolean" + }, + "stdin Once": { + description: + "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdin Once is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + type: "boolean" + }, + "termination Message Path": { + description: + "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + type: "string" + }, + "termination Message Policy": { + description: + 'Indicate how the termination message should be populated. File will use the contents of termination Message Path to populate the container status message on both success and failure. Fallback To Logs On Error will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. Possible enum values: - `"Fallback To Logs On Error"` will read the most recent contents of the container logs for the container status message when the container exits with an error and the termination Message Path has no contents. - `"File"` is the default behavior and will set the container status message to the contents of the container\'s termination Message Path when the container exits.', + enum: ["FallbackToLogsOnError", "File"], + type: "string" + }, + tty: { + description: + "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + type: "boolean" + }, + "volume Devices": { + description: + "volume Devices is the list of block devices to be used by the container.", + items: { + allOf: [ + { + description: + "volume Device describes a mapping of a raw block device within a container.", + properties: { + "device Path": { + default: "", + description: + "device Path is the path inside of the container that the device will be mapped to.", + type: "string" + }, + name: { + default: "", + description: + "name must match the name of a persistent Volume Claim in the pod", + type: "string" + } + }, + required: ["name", "device Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "device Path", + "x-kubernetes-patch-strategy": "merge" + }, + "volume Mounts": { + description: + "Pod volumes to mount into the container's filesystem. Cannot be updated.", + items: { + allOf: [ + { + description: + "Volume Mount describes a mounting of a Volume within a container.", + properties: { + "mount Path": { + default: "", + description: + "Path within the container at which the volume should be mounted. Must not contain ':'.", + type: "string" + }, + "mount Propagation": { + description: + "mount Propagation determines how mounts are propagated from the host to container and the other way around. When not set, Mount Propagation None is used. This field is beta in 1.10.", + type: "string" + }, + name: { + default: "", + description: "This must match the Name of a Volume.", + type: "string" + }, + "read Only": { + description: + "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + type: "boolean" + }, + "sub Path": { + description: + "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + type: "string" + }, + "sub Path Expr": { + description: + "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to Sub Path but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). Sub Path Expr and Sub Path are mutually exclusive.", + type: "string" + } + }, + required: ["name", "mount Path"], + type: "object" + } + ], + default: {} + }, + type: "array", + "x-kubernetes-patch-merge-key": "mount Path", + "x-kubernetes-patch-strategy": "merge" + }, + "working Dir": { + description: + "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + type: "string" + } + }, + required: ["name"], + type: "object" + }, + componentDefinition: { + id: "fcd41e59-cb70-481c-9302-9221e389087c", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + displayName: "Container", + description: "", + format: "JSON", + model: { + id: "b2626b4d-0761-57bb-b27a-9dc5339b0c86", + schemaVersion: "core.meshery.io/v1beta1", + version: "v1.0.0", + name: "meshery-core", + displayName: "Meshery Core", + description: "", + status: "enabled", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + registrant: { hostname: "artifacthub" }, + category: { name: "Orchestration & Management", metadata: null }, + subCategory: "App Definition and Development", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + components: null, + relationships: null + }, + metadata: { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": false,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": false\n },\n "style": false\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: "", + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + component: { + kind: "Container", + version: "core.meshery.io/v1alpha1", + schema: "{}" + }, + duplicates: 6 + }, + parent: "2ec38d0f-8c4e-4440-b3f0-991a64b8aed3", + id: "de2f2bcd-70bf-4f72-8e6e-93c269a7e12d", + config: { + services: { + "de2f2bcd-70bf-4f72-8e6e-93c269a7e12d": { settings: { name: "redis" } } + } + } + }, + position: { x: -109.5722605330142, y: -211.37198914445776 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "fieldRefNode" + } + ], + edges: [ + { + data: { + id: "f064b241-19b0-4c0d-a7c6-dedc9a23f366", + metadata: { port: 8877, protocol: "TCP" }, + source: "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4", + subType: "Network", + target: "7820034f-bd39-454e-b215-5bb8af95c405" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "d11b96ae-0cf4-4e4c-b9a3-50507b62d79e", + metadata: { port: 80, protocol: "TCP" }, + source: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + subType: "Network", + target: "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "b512a101-6b54-4aa5-b8ce-66fc772bb362", + metadata: { binded_by: "b2f3d75e-28fe-4359-b0b2-2287ced3d53c" }, + source: "03a72188-6643-4314-8c2a-0da6f6135675", + subType: "Permission", + target: "e1a6aac1-3112-420f-b646-09dd7f71b29f" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "6c978563-edd7-4c16-a09d-a1c63857df56", + metadata: { binded_by: "52adbc0e-45f3-444d-80c5-2214aa2c7efc" }, + source: "2a269e24-8a45-4b31-b1bd-bc3ab24943da", + subType: "Permission", + target: "e1a6aac1-3112-420f-b646-09dd7f71b29f" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "a5057394-11fe-4054-be97-c49522ca222b", + metadata: { binded_by: "6f0697b8-61db-4db7-a1be-e3442b6513a7" }, + source: "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a", + subType: "Permission", + target: "72d5f647-0743-4556-b67b-977a43fd9c16" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "41b8e93f-9c0b-4d35-8c44-dbc7712c34bf", + metadata: { binded_by: "cca9bba7-04c3-4860-8d69-4cc317d31bd2" }, + source: "57c11961-03d6-4931-83e8-4aecf19c5d07", + subType: "Permission", + target: "72d5f647-0743-4556-b67b-977a43fd9c16" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + }, + { + data: { + id: "2e82a347-0bab-4ed2-ac40-d413c256bab8", + metadata: { port: 80, protocol: "TCP" }, + source: "85d2f80c-eb5a-489e-89d7-5ad7c14142e1", + subType: "Network", + target: "7820034f-bd39-454e-b215-5bb8af95c405" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "ea26ce7b-d71f-44bf-b123-56ec6c59d5d4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1001", + zIndex: "1001", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-admin", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-admin", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "ae37bb96-b4e6-4b4f-9e13-ac47309cf6eb": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f345ac82-0446-49f6-8f80-833e99f459ff": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-watch", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-watch", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4ae1f64a-c8db-4e87-b95c-11efb4bcf693": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "ambassador", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "ambassador", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "03a72188-6643-4314-8c2a-0da6f6135675": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-config", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-config", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2a269e24-8a45-4b31-b1bd-bc3ab24943da": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "88657fea-8edf-4f54-bfc2-6c8f10d5c79e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-devportal", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-devportal", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "9def6980-7ca2-4738-8c66-c2bcae5b9111": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-pods", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-pods", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "cca9bba7-04c3-4860-8d69-4cc317d31bd2": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1000", + zIndex: "1000", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-apiext", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-apiext", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "bce4ed54-de41-4e1b-9a89-1ca92f0c2186": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "32px", + width: "32px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "1px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "over", + backgroundImageContainment: "over", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "1px", + paddingLeft: "1px", + "padding-right": "1px", + paddingRight: "1px", + "padding-top": "1px", + paddingTop: "1px", + "padding-bottom": "1px", + paddingBottom: "1px" + }, + "19cbe38e-f319-4ad2-bdab-10f1e02ae8e4": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-ratelimit", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-ratelimit", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "9b50fcf5-b779-487a-b9b9-abf11867ac39": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-devportal-api", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-devportal-api", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "72d5f647-0743-4556-b67b-977a43fd9c16": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b2f3d75e-28fe-4359-b0b2-2287ced3d53c": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-config", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjUgOTBDOS41IDgwLjkwNjkgMTMuMjQwMiA3Mi4xODYxIDE5Ljg5NzcgNjUuNzU2M0MyNi41NTUzIDU5LjMyNjUgMzUuNTg0OCA1NS43MTQzIDQ1IDU1LjcxNDNDNTQuNDE1MiA1NS43MTQzIDYzLjQ0NDggNTkuMzI2NSA3MC4xMDIzIDY1Ljc1NjNDNzYuNzU5OCA3Mi4xODYxIDgwLjUgODAuOTA2OSA4MC41IDkwSDkuNVpNNDUgNTEuNDI4NkMzMC4yODk3IDUxLjQyODYgMTguMzc1IDM5LjkyMTQgMTguMzc1IDI1LjcxNDNDMTguMzc1IDExLjUwNzEgMzAuMjg5NyAwIDQ1IDBDNTkuNzEwMyAwIDcxLjYyNSAxMS41MDcxIDcxLjYyNSAyNS43MTQzQzcxLjYyNSAzOS45MjE0IDU5LjcxMDMgNTEuNDI4NiA0NSA1MS40Mjg2Wk01MC4yNjY3IDY1LjMwOTNDNTEuMjI5OSA2NC40NTEyIDUyLjY4MTEgNjQuNDcxNyA1My42MjAyIDY1LjM1NjZMNTMuNzY2OSA2NS40OTQ4QzU0LjgzMjMgNjYuNDk4NiA1NC44MjI0IDY4LjIwNjcgNTMuNzQ1NSA2OS4xOTc5TDQ3LjQ0NjMgNzQuOTk2MkM0Ni40NjA5IDc1LjkwMzEgNDQuOTQzNCA3NS44Njc4IDQ0LjAwMDYgNzQuOTE2TDQzLjc2MDcgNzQuNjczOEM0My42ODAzIDc0LjU5MjYgNDMuNjA2NSA3NC41MDczIDQzLjUzOTQgNzQuNDE4Nkg0MS42NDkzQzQxLjg1MTcgNzQuOTQzNCA0Mi4xNjMgNzUuNDM2IDQyLjU4NDQgNzUuODYxM0w0Mi44MjQzIDc2LjEwMzVDNDQuMzk1NyA3Ny42ODk5IDQ2LjkyNDkgNzcuNzQ4OCA0OC41NjcxIDc2LjIzNzJMNTQuODY2MyA3MC40Mzg5QzU2LjY2MTIgNjguNzg2OCA1Ni42Nzc2IDY1Ljk0MDEgNTQuOTAxOSA2NC4yNjdMNTQuNzU1MyA2NC4xMjg4QzUzLjE5MDEgNjIuNjU0IDUwLjc3MTUgNjIuNjE5OSA0OS4xNjYgNjQuMDVMNDIuNzczNiA2OS43NDQyQzQyLjY2MzIgNjkuODQyNSA0Mi41NTkzIDY5Ljk0NTMgNDIuNDYxOSA3MC4wNTIxSDQ0Ljk0MjNMNTAuMjY2NyA2NS4zMDkzWk0zNS4zMzMxIDgzLjAzOEMzNi4yNzIzIDgzLjkyMjkgMzcuNzIzNCA4My45NDM0IDM4LjY4NjcgODMuMDg1NEw0NC4wMTEgNzguMzQyNUg0Ni40OTE0QzQ2LjM5NCA3OC40NDkzIDQ2LjI5MDEgNzguNTUyMSA0Ni4xNzk4IDc4LjY1MDRMMzkuNzg3MyA4NC4zNDQ3QzM4LjE4MTkgODUuNzc0NyAzNS43NjMzIDg1Ljc0MDYgMzQuMTk4MSA4NC4yNjU4TDM0LjA1MTQgODQuMTI3NkMzMi4yNzU4IDgyLjQ1NDUgMzIuMjkyMiA3OS42MDc4IDM0LjA4NyA3Ny45NTU3TDQwLjM4NjMgNzIuMTU3NEM0Mi4wMjg1IDcwLjY0NTggNDQuNTU3NyA3MC43MDQ3IDQ2LjEyOTEgNzIuMjkxMUw0Ni4zNjkgNzIuNTMzM0M0Ni43OTAzIDcyLjk1ODcgNDcuMTAxNyA3My40NTEzIDQ3LjMwNDEgNzMuOTc2SDQ1LjQxMzlDNDUuMzQ2OSA3My44ODczIDQ1LjI3MzEgNzMuODAyIDQ1LjE5MjcgNzMuNzIwOEw0NC45NTI4IDczLjQ3ODdDNDQuMDA5OSA3Mi41MjY4IDQyLjQ5MjQgNzIuNDkxNSA0MS41MDcxIDczLjM5ODRMMzUuMjA3OSA3OS4xOTY3QzM0LjEzMSA4MC4xODggMzQuMTIxMSA4MS44OTYgMzUuMTg2NSA4Mi44OTk5TDM1LjMzMzEgODMuMDM4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-config", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "566e169e-7254-45af-b507-1130adc5fd5b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-deployments", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-deployments", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e1a6aac1-3112-420f-b646-09dd7f71b29f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "85d2f80c-eb5a-489e-89d7-5ad7c14142e1": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "36e37b78-07b2-41bc-bdbe-2810d680a0f5": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "ambassador", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "dashed", + borderStyle: "dashed", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "ambassador", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "127a1758-2127-4a41-9424-7cfad71e1284": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-aes", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-aes", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "52adbc0e-45f3-444d-80c5-2214aa2c7efc": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c460e7a0-abba-4480-afca-a347a6087bf7": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-redis", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-redis", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "f7e695ff-aee9-4b53-9433-ab7660f15a77": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-configmaps", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-configmaps", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "d13c234a-efae-42ec-9884-3d08c65136c9": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-endpoints", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-endpoints", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "127435b1-2c1e-4480-a448-706b70490870": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-crd", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-crd", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6f0697b8-61db-4db7-a1be-e3442b6513a7": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "10.5px", + width: "10.5px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjM4NjcgMzYuMjIyMUgyNS4yNzQyVjQyLjE0NzVIMTYuMzg2N1Y1MS4wMzU3SDEwLjQ2MTdWNDIuMTQ3NUgxLjU3NDIyVjM2LjIyMjFIMTAuNDYxN1YyNy4zMzRIMTYuMzg2N1YzNi4yMjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OS43MTA3IDQ0Ljg4NzFDNjAuMzk4MiA0NC44ODcxIDY5LjA2MjIgMzYuMjIzMiA2OS4wNjIyIDI1LjUzNThDNjkuMDYyMiAxNC44NDg0IDYwLjM5ODIgNi4xODQ1NyA0OS43MTA3IDYuMTg0NTdDMzkuMDIzMSA2LjE4NDU3IDMwLjM1OTEgMTQuODQ4NCAzMC4zNTkxIDI1LjUzNThDMzAuMzU5MSAzNi4yMjMyIDM5LjAyMzEgNDQuODg3MSA0OS43MTA3IDQ0Ljg4NzFaTTM1LjY4MzMgNDUuOTA1OUMzNi4wNzI2IDQ1Ljg0OTEgMzYuNDY2IDQ1Ljk1MDQgMzYuNzk4OCA0Ni4xNjAxQzQwLjI4MzcgNDguMzU2MSA0NC43NTQ3IDQ5LjY3NTYgNDkuNjMwMyA0OS42NzU2QzU0LjUzMzggNDkuNjc1NiA1OS4wMjgxIDQ4LjM0MDkgNjIuNTIxNSA0Ni4xMjIzQzYyLjg0NzIgNDUuOTE1NCA2My4yMzE3IDQ1LjgxMjYgNjMuNjE0MyA0NS44NjE3QzcyLjk2NzggNDcuMDYzMSA4MC4xOTU5IDU1LjA1NTMgODAuMTk1OSA2NC43MzU2VjcyLjIzMTRDODAuMTk1OSA3OC42Mjg4IDc1LjAwOTggODMuODE0OSA2OC42MTI0IDgzLjgxNDlIMzEuMDA3MkMyNC42MDk5IDgzLjgxNDkgMTkuNDIzOCA3OC42Mjg4IDE5LjQyMzggNzIuMjMxNVY2NC43MzU2QzE5LjQyMzggNTUuMTY2NyAyNi40ODY1IDQ3LjI0NzMgMzUuNjgzMyA0NS45MDU5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04MC43MzQ4IDgyLjM2NTdDODIuNDE5MyA4MC4yMjMzIDgzLjQyNDEgNzcuNTIxMSA4My40MjQxIDc0LjU4NDNWNjMuODg0NEM4My40MjQxIDU1LjgyOTggNzguODIzNyA0OC44NDk3IDcyLjEwNzIgNDUuNDI4MkM4MS40Mzg1IDQ2Ljk2ODQgODguNTE1OSA1NC41MjgzIDg4LjQyMzEgNjMuNDUwNFY3MS44ODI3Qzg4LjQyMzEgNzYuNjM4IDg1LjI0OTYgODAuNjkzMSA4MC43MzQ4IDgyLjM2NTdaTTcyLjMxODIgMjUuNTM1NEM3Mi4zMTgyIDMwLjQ0OSA3MC44MzIzIDM1LjAxNTUgNjguMjg1NCAzOC44MTAyQzc0LjkyMjUgMzYuNTg1NCA3OS43MDQ3IDMwLjMxNjMgNzkuNzA0NyAyMi45MzAxQzc5LjcwNDcgMTMuNjgyMyA3Mi4yMDggNi4xODU1NSA2Mi45NjAyIDYuMTg1NTVDNjIuNzgxNCA2LjE4NTU1IDYyLjYwMzMgNi4xODgzNSA2Mi40MjU4IDYuMTkzOTFDNjguNDE4NyAxMC41MjYyIDcyLjMxODIgMTcuNTc1NCA3Mi4zMTgyIDI1LjUzNTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "6ff12d76-a77d-4b52-afd6-d526e1bf11e0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-devportal-demo", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-devportal-demo", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2606ffde-8e48-4dc3-832a-00f8d2e8ba4a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7820034f-bd39-454e-b215-5bb8af95c405": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f06c301f-0315-4d83-a8d4-f288fe5a90a2": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-applications", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-applications", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "009e0e4b-f78e-4ac7-b694-1ab69df6df2e": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-agent-rollouts", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MS4wMTE0IDQ1LjAxNUM1MS42OTkgNDUuMDE1IDYwLjM2MyAzNi4zNTEyIDYwLjM2MyAyNS42NjM3QzYwLjM2MyAxNC45NzYzIDUxLjY5OSA2LjMxMjUgNDEuMDExNCA2LjMxMjVDMzAuMzIzOSA2LjMxMjUgMjEuNjU5OSAxNC45NzYzIDIxLjY1OTkgMjUuNjYzN0MyMS42NTk5IDM2LjM1MTIgMzAuMzIzOSA0NS4wMTUgNDEuMDExNCA0NS4wMTVaTTI2Ljk4NDEgNDYuMDMzOEMyNy4zNzMzIDQ1Ljk3NzEgMjcuNzY2OCA0Ni4wNzgzIDI4LjA5OTYgNDYuMjg4MUMzMS41ODQ0IDQ4LjQ4NCAzNi4wNTU1IDQ5LjgwMzYgNDAuOTMxIDQ5LjgwMzZDNDUuODM0NiA0OS44MDM2IDUwLjMyODkgNDguNDY4OCA1My44MjIzIDQ2LjI1MDJDNTQuMTQ4IDQ2LjA0MzQgNTQuNTMyNSA0NS45NDA1IDU0LjkxNTEgNDUuOTg5N0M2NC4yNjg2IDQ3LjE5MTEgNzEuNDk2NiA1NS4xODMyIDcxLjQ5NjYgNjQuODYzNVY3Mi4zNTk0QzcxLjQ5NjYgNzguNzU2NyA2Ni4zMTA2IDgzLjk0MjggNTkuOTEzMiA4My45NDI4SDIyLjMwOEMxNS45MTA3IDgzLjk0MjggMTAuNzI0NiA3OC43NTY3IDEwLjcyNDYgNzIuMzU5NFY2NC44NjM1QzEwLjcyNDYgNTUuMjk0NiAxNy43ODcyIDQ3LjM3NTIgMjYuOTg0MSA0Ni4wMzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03Mi4wMzU2IDgyLjQ5MzdDNzMuNzIwMSA4MC4zNTEyIDc0LjcyNDkgNzcuNjQ5IDc0LjcyNDkgNzQuNzEyMlY2NC4wMTIzQzc0LjcyNDkgNTUuOTU3NyA3MC4xMjQ1IDQ4Ljk3NzYgNjMuNDA4IDQ1LjU1NjFDNzIuNzM5MyA0Ny4wOTYzIDc5LjgxNjcgNTQuNjU2MiA3OS43MjM4IDYzLjU3ODNWNzIuMDEwNkM3OS43MjM4IDc2Ljc2NiA3Ni41NTA0IDgwLjgyMTEgNzIuMDM1NiA4Mi40OTM3Wk02My42MTg5IDI1LjY2MzNDNjMuNjE4OSAzMC41NzY5IDYyLjEzMzEgMzUuMTQzNCA1OS41ODYyIDM4LjkzODFDNjYuMjIzMyAzNi43MTMzIDcxLjAwNTUgMzAuNDQ0MiA3MS4wMDU1IDIzLjA1ODFDNzEuMDA1NSAxMy44MTAzIDYzLjUwODggNi4zMTM0OCA1NC4yNjEgNi4zMTM0OEM1NC4wODIyIDYuMzEzNDggNTMuOTA0IDYuMzE2MjggNTMuNzI2NiA2LjMyMTg0QzU5LjcxOTQgMTAuNjU0MiA2My42MTg5IDE3LjcwMzQgNjMuNjE4OSAyNS42NjMzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-agent-rollouts", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "406be56e-59bf-4d9d-9804-373299246102": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-auth", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-auth", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "7f1fb9dc-fa87-433d-92b8-6ca923988187": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-devportal-assets", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(0,179,159)", + backgroundColor: "rgb(0,179,159)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,214,190)", + borderColor: "rgb(0,214,190)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDA1IDguNzMydjYuNTdsNS42OTQtMy4yOTctNS42OTQtMy4yNzNabTAgNy45NDJ2Ni42MDJsNS43NDctMy4yODUtNS43NDctMy4zMTdaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAxNS4yNTZ2LTYuNDdsLTUuNjIyIDMuMjI1IDUuNjIyIDMuMjQ1Wk00LjMwNyAyMy4yNTJhMTMuODA5IDEzLjgwOSAwIDAgMCA0LjM2MiA0LjM5di02LjkxNGwtNC4zNjIgMi41MjRabTExLjI3OS0uMDA4di02LjUyTDkuOTUgMTkuOTg1bDUuNjM2IDMuMjU4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im05LjQ5IDI3LjIzIDUuNzA3LTMuMjYzLTUuNzA3LTMuM3Y2LjU2M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjIuNTQgMjcuMjY1di02LjU1M2wtNS42OTkgMy4yNTkgNS43IDMuMjk0Wm01LjU4LTQuNzczYTEzLjY5NyAxMy42OTcgMCAwIDAgMS42MTItNS44OTVsLTUuOTM0IDMuMzk3IDQuMzIzIDIuNDk4WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Im0yMy4zNjIgMTkuMjk4IDUuNzI4LTMuMjc2LTUuNzI4LTMuMjkxdjYuNTY3WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMi41NDEgMTEuMzE1VjQuOGwtNS42NzMgMy4yNTMgNS42NzMgMy4yNjJabTAgNy45NTV2LTYuNTc0bC01LjY4NSAzLjI5MiA1LjY4NSAzLjI4MVoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNOS40OSAxMi42ODR2Ni42MjJsNS43MjgtMy4zMTYtNS43MjgtMy4zMDZaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTE1LjU4NiAyLjI1YTEzLjY5IDEzLjY5IDAgMCAwLTYuMDM3IDEuNTk1bDYuMDM3IDMuNDYzVjIuMjVaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PHBhdGggZD0iTTkuNDkgNC43NTZ2Ni41ODNsNS43MzItMy4yODhMOS40OSA0Ljc1NloiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNOC42NjkgNC4zNTZhMTMuODMgMTMuODMgMCAwIDAtNC4zNjIgNC4zOWw0LjM2MiAyLjUxOFY0LjM1NloiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjIuNTA0IDMuODhhMTMuNjk1IDEzLjY5NSAwIDAgMC02LjA5OS0xLjYzdjUuMTIzbDYuMS0zLjQ5M1pNMi4yNSAxNi40ODNjLjA3MSAyLjEyLjYzNCA0LjE5NiAxLjY0NCA2LjA2Mmw0LjQxOC0yLjU1OS02LjA2Mi0zLjUwM1ptMS42NDQtNy4wMjhhMTMuNjggMTMuNjggMCAwIDAtMS42NDQgNi4wMzZsNi4wNjgtMy40ODItNC40MjQtMi41NTRaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTkuNTM5IDI4LjE0N2ExMy42NzMgMTMuNjczIDAgMCAwIDYuMDQ3IDEuNjAzdi01LjA2Mkw5LjU0IDI4LjE0N1oiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjgiLz48cGF0aCBkPSJNMjcuNjk3IDguNzY4YTEzLjgzIDEzLjgzIDAgMCAwLTQuMzM1LTQuMzgzdjYuODg5bDQuMzM1LTIuNTA2Wk0yMy4zNjIgMjcuNjJhMTMuODUxIDEzLjg1MSAwIDAgMCA0LjM1MS00LjQxN2wtNC4zNTEtMi41MTR2Ni45M1oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjkuNzUgMTUuNDUyYTEzLjY1OSAxMy42NTkgMCAwIDAtMS42My01Ljk3OWwtNC4zODEgMi41MyA2LjAxMSAzLjQ1WiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuOCIvPjxwYXRoIGQ9Ik0xNi40MDUgMjkuNzVhMTMuNjczIDEzLjY3MyAwIDAgMCA2LjAzNi0xLjU5NWwtNi4wMzYtMy40OTh2NS4wOTNaIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTguNjY5IDE5LjI0N3YtNi40OTRMMy4wMyAxNS45ODZsNS42MzkgMy4yNjFaIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii44Ii8+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-devportal-assets", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "57c11961-03d6-4931-83e8-4aecf19c5d07": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-apiext", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "22px", + width: "22px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00NS4wMDgxIDQ0Ljg4MzFDNTYuMTQ4OCA0NC44ODMxIDY1LjE4MDEgMzUuODUxOCA2NS4xODAxIDI0LjcxMTFDNjUuMTgwMSAxMy41NzA0IDU2LjE0ODggNC41MzkwNiA0NS4wMDgxIDQuNTM5MDZDMzMuODY3NCA0LjUzOTA2IDI0LjgzNjEgMTMuNTcwNCAyNC44MzYxIDI0LjcxMTFDMjQuODM2MSAzNS44NTE4IDMzLjg2NzQgNDQuODgzMSA0NS4wMDgxIDQ0Ljg4MzFaTTMwLjM4NzIgNDUuOTQ0MkMzMC43OTI5IDQ1Ljg4NTEgMzEuMjAzIDQ1Ljk5MDYgMzEuNTQ5OSA0Ni4yMDkyQzM1LjE4MjQgNDguNDk4IDM5Ljg0MjcgNDkuODczMyA0NC45MjQ2IDQ5Ljg3MzNDNTAuMDM1NiA0OS44NzMzIDU0LjcyMDIgNDguNDgyMiA1OC4zNjE2IDQ2LjE2OTdDNTguNzAxIDQ1Ljk1NDIgNTkuMTAxOCA0NS44NDcgNTkuNTAwNiA0NS44OTgyQzY5LjI1MTIgNDcuMTUwMiA3Ni43ODYyIDU1LjQ4MTQgNzYuNzg2MiA2NS41NzI1VjczLjM4NjZDNzYuNzg2MiA4MC4wNTUyIDcxLjM4MDIgODUuNDYxMiA2NC43MTE1IDg1LjQ2MTJIMjUuNTEyMUMxOC44NDM1IDg1LjQ2MTIgMTMuNDM3NSA4MC4wNTUyIDEzLjQzNzUgNzMuMzg2NlY2NS41NzI1QzEzLjQzNzUgNTUuNTk3NiAyMC44IDQ3LjM0MjIgMzAuMzg3MiA0NS45NDQyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-apiext", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2ec38d0f-8c4e-4440-b3f0-991a64b8aed3": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "edge-stack-redis", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "edge-stack-redis", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "f064b241-19b0-4c0d-a7c6-dedc9a23f366": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "8877/TCP", + targetLabel: "8877/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "d11b96ae-0cf4-4e4c-b9a3-50507b62d79e": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "b512a101-6b54-4aa5-b8ce-66fc772bb362": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "6c978563-edd7-4c16-a09d-a1c63857df56": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "a5057394-11fe-4054-be97-c49522ca222b": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "41b8e93f-9c0b-4d35-8c44-dbc7712c34bf": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "2e82a347-0bab-4ed2-ac40-d413c256bab8": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + }, + "5be73225-ad10-42ed-a953-18233457dec8": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "agent", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "agent", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "38554950-c97d-4c7c-93b5-8ed4c3f3442b": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "aes", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "aes", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "de2f2bcd-70bf-4f72-8e6e-93c269a7e12d": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "1002", + zIndex: "1002", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-d429e684-c42a-4c14-816b-b4dddb4b6d40-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-node-application.js b/static/embed-test/embedded-design-node-application.js new file mode 100644 index 000000000000..5e4af543010f --- /dev/null +++ b/static/embed-test/embedded-design-node-application.js @@ -0,0 +1,2212 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "cebbec75-e2c2-41f1-9308-81dc3c22918f", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "nodeapp", + services: { + "cebbec75-e2c2-41f1-9308-81dc3c22918f": { + namespace: "default", + settings: { + spec: { + ports: [{ port: 80, protocol: "TCP", "target Port": 3000 }], + selector: { app: "node" }, + type: "LoadBalancer" + }, + name: "nodeapp", + namespace: "default", + labels: { app: "node" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "318bad1d-f575-46fb-aef2-8ada2299ed01", + metadata: { port: 80, protocol: "TCP" }, + source: "cebbec75-e2c2-41f1-9308-81dc3c22918f", + subType: "Network", + target: "b13f7f8a-ed79-4a8b-af64-ec87d406c288" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "cebbec75-e2c2-41f1-9308-81dc3c22918f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 6 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: 169.28753088767232, posY: -53.13054002411085 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: 169.28753088767232, y: -53.13054002411085 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b13f7f8a-ed79-4a8b-af64-ec87d406c288", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "nodeapp", + services: { + "b13f7f8a-ed79-4a8b-af64-ec87d406c288": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "node" } }, + template: { + metadata: { + annotations: { + "dapr.io/app-id": "nodeapp", + "dapr.io/app-port": "3000", + "dapr.io/enable-api-logging": "true", + "dapr.io/enabled": "true" + }, + labels: { app: "node" } + }, + spec: { + containers: [ + { + env: [{ name: "APP_PORT", value: "3000" }], + image: "ghcr.io/dapr/samples/hello-k8s-node:latest", + "image Pull Policy": "Always", + name: "node", + ports: [{ "container Port": 3000 }] + } + ] + } + } + }, + name: "nodeapp", + namespace: "default", + labels: { app: "node" } + }, + traits: { + meshmap: { + edges: [ + { + data: { + id: "318bad1d-f575-46fb-aef2-8ada2299ed01", + metadata: { port: 80, protocol: "TCP" }, + source: "cebbec75-e2c2-41f1-9308-81dc3c22918f", + subType: "Network", + target: "b13f7f8a-ed79-4a8b-af64-ec87d406c288" + }, + style: { + "control-point-distances": null, + "control-point-weights": "0.5", + "curve-style": "bezier", + "haystack-radius": "0", + "line-color": "rgb(153,153,153)", + "line-style": "dotted", + opacity: "1", + "segment-distances": "20px", + "segment-weights": "0.5", + "target-arrow-shape": "vee", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + width: "1.5px" + } + } + ], + fieldRefData: {}, + id: "b13f7f8a-ed79-4a8b-af64-ec87d406c288", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": 0.5, + "border-width": 2, + "z-index": 5 + }, + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: 58.82071973688275, posY: -21.976321871958703 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: 58.82071973688275, y: -21.976321871958703 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "03773f42-3aad-4f2f-8cf0-1d1c08ef63e6", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "node", + services: { + "03773f42-3aad-4f2f-8cf0-1d1c08ef63e6": { + settings: { name: "node" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "03773f42-3aad-4f2f-8cf0-1d1c08ef63e6", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 4 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "b13f7f8a-ed79-4a8b-af64-ec87d406c288", + position: { posX: 58.82071973688276, posY: -30.9763218719587 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "b13f7f8a-ed79-4a8b-af64-ec87d406c288" + }, + position: { x: 58.82071973688276, y: -30.9763218719587 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ], + edges: [ + { + data: { + id: "318bad1d-f575-46fb-aef2-8ada2299ed01", + metadata: { port: 80, protocol: "TCP" }, + source: "cebbec75-e2c2-41f1-9308-81dc3c22918f", + subType: "Network", + target: "b13f7f8a-ed79-4a8b-af64-ec87d406c288" + }, + position: { x: 0, y: 0 }, + group: "edges", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: true, + classes: "" + } + ] + }, + elementStyles: { + "cebbec75-e2c2-41f1-9308-81dc3c22918f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "6", + zIndex: "6", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "nodeapp", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "nodeapp", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "b13f7f8a-ed79-4a8b-af64-ec87d406c288": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "nodeapp", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "nodeapp", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "03773f42-3aad-4f2f-8cf0-1d1c08ef63e6": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "node", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "node", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "318bad1d-f575-46fb-aef2-8ada2299ed01": { + events: "yes", + "text-events": "yes", + textEvents: "yes", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "0px", + minZoomedFontSize: "0px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "999", + zIndex: "999", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "top", + textValign: "top", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(255,255,255)", + textOutlineColor: "rgb(255,255,255)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(0,0,0)", + textBackgroundColor: "rgb(0,0,0)", + "text-background-opacity": "0", + textBackgroundOpacity: "0", + "text-background-padding": "0px", + textBackgroundPadding: "0px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "rectangle", + textBackgroundShape: "rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "normal", + fontWeight: "normal", + "font-size": "6px", + fontSize: "6px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "wrap", + textWrap: "wrap", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "9999px", + textMaxWidth: "9999px", + "text-outline-width": "1px", + textOutlineWidth: "1px", + "line-height": "1", + lineHeight: "1", + label: "", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "0px", + textMarginY: "0px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "80/TCP", + targetLabel: "80/TCP", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "-6px", + targetTextMarginY: "-6px", + "target-text-offset": "16px", + targetTextOffset: "16px", + height: "30px", + width: "1.5px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(153,153,153)", + backgroundColor: "rgb(153,153,153)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "0px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(0,0,0)", + borderColor: "rgb(0,0,0)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": "url(none)", + backgroundImage: "url(none)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "include-padding", + backgroundWidthRelativeTo: "include-padding", + "background-height-relative-to": "include-padding", + backgroundHeightRelativeTo: "include-padding", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "none", + backgroundFit: "none", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "dotted", + lineStyle: "dotted", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "bezier", + curveStyle: "bezier", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-line", + sourceEndpoint: "outside-to-line", + "target-endpoint": "outside-to-line", + targetEndpoint: "outside-to-line", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "vee", + targetArrowShape: "vee", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "0px", + paddingLeft: "0px", + "padding-right": "0px", + paddingRight: "0px", + "padding-top": "0px", + paddingTop: "0px", + "padding-bottom": "0px", + paddingBottom: "0px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-13665e6e-53cc-4cf4-9e8e-280237428672-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-python-application.js b/static/embed-test/embedded-design-python-application.js new file mode 100644 index 000000000000..623754c1ad5b --- /dev/null +++ b/static/embed-test/embedded-design-python-application.js @@ -0,0 +1,1199 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "01acbf25-3211-46fd-8c40-c7e5ba41546f", + type: "Deployment", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "pythonapp", + services: { + "01acbf25-3211-46fd-8c40-c7e5ba41546f": { + namespace: "default", + settings: { + spec: { + replicas: 1, + selector: { "match Labels": { app: "python" } }, + template: { + metadata: { + annotations: { + "dapr.io/app-id": "pythonapp", + "dapr.io/enable-api-logging": "true", + "dapr.io/enabled": "true" + }, + labels: { app: "python" } + }, + spec: { + containers: [ + { + image: "ghcr.io/dapr/samples/hello-k8s-python:latest", + name: "python" + } + ] + } + } + }, + name: "pythonapp", + namespace: "default", + labels: { app: "python" } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "01acbf25-3211-46fd-8c40-c7e5ba41546f", + "meshmodel-metadata": { + capabilities: + '{\n "fieldRefs": [\n {\n "fieldPath": "spec.template.spec.containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n },\n {\n "fieldPath": "spec.template.spec.init Containers",\n "jsonSchemaPath": "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.init Containers.items.allOf[0]",\n "component": {\n "kind": "Container",\n "model": "meshery-core"\n },\n "renderChildren": true\n }\n ],\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: '{"border-width":2,"background-opacity":0.5}', + styles: '{"border-width":2,"background-opacity":0.5}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/deployment-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/deployment-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/deployment-white.svg" + }, + position: { posX: -4, posY: 7 }, + whiteboardData: { style: {} } + } + }, + type: "Deployment" + } + } + } + }, + position: { x: -4, y: 7 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "c19ba597-76f9-4e28-ac53-b95e98b7b7e0", + label: "spec.template.spec.containers[0]", + type: "Container", + meshType: "meshery-core", + model: "meshery-core", + config: { + name: "python", + services: { + "c19ba597-76f9-4e28-ac53-b95e98b7b7e0": { + settings: { name: "python" }, + traits: { + meshmap: { + edges: [], + elementType: "FIELD_REF_NODE", + fieldRefData: { + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]" + }, + id: "c19ba597-76f9-4e28-ac53-b95e98b7b7e0", + label: "spec.template.spec.containers[0]", + "meshmodel-data": { + category: { metadata: null, name: "Orchestration & Management" }, + components: null, + description: "", + displayName: "Meshery Core", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "71af0d59-f11b-5151-924a-f9f805edb3df", + metadata: { + isAnnotation: false, + subCategory: "App Definition and Development", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/color/meshery-core-color.svg" + }, + model: { version: "0.7.2" }, + name: "meshery-core", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "App Definition and Development", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: + '{\n "designer": {\n "capabilities": {\n "config": true,\n "label": false,\n "policy": false,\n "relationships": true,\n "json-schema": false,\n "permissions": false,\n "workflow": false,\n "gitops": false,\n "history": false\n },\n "supportsCompoundDragAndDrop": false,\n "edit": {\n "config": true,\n "copy": false,\n "delete": true,\n "duplicate": false,\n "reset-styles": false,\n "resolve": false,\n "lock": false,\n "shape": {\n "convert-shape": true\n },\n "style": true\n },\n "label": {\n "edit": false,\n "show": true,\n "sync-with-config-property": "name"\n }\n }\n}', + defaultData: "", + genealogy: "", + hasInvalidSchema: true, + isAnnotation: true, + primaryColor: "#326CE5", + secondaryColor: "#00D3A9", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 3 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/meshery-core/color/container-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/meshery-core/white/container-white.svg" + }, + parent: "01acbf25-3211-46fd-8c40-c7e5ba41546f", + position: { posX: -4, posY: -2 }, + whiteboardData: {} + } + }, + type: "Container" + } + } + }, + elementType: "FIELD_REF_NODE", + fieldPath: "spec.template.spec.containers[0]", + jsonSchemaPath: + "properties.spec.allOf[0].properties.template.allOf[0].properties.spec.allOf[0].properties.containers.items.allOf[0]", + parent: "01acbf25-3211-46fd-8c40-c7e5ba41546f" + }, + position: { x: -4, y: -2 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ] + }, + elementStyles: { + "01acbf25-3211-46fd-8c40-c7e5ba41546f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "pythonapp", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.5", + backgroundOpacity: "0.5", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "2px", + borderWidth: "2px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY3IiBoZWlnaHQ9IjE1NiIgdmlld0JveD0iMCAwIDE2NyAxNTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik05My44MTg1IDcuMDE4NDhDODUuOTMyNSAxLjI4ODk5IDc1LjI1NDEgMS4yODg5OSA2Ny4zNjgxIDcuMDE4NDlMMTIuMDE5OSA0Ny4yMzEzQzQuMTMzOTEgNTIuOTYwOCAwLjgzNDExNSA2My4xMTY2IDMuODQ2MjkgNzIuMzg3MUwyNC45ODc0IDEzNy40NTNDMjcuOTk5NiAxNDYuNzIzIDM2LjYzODYgMTUzIDQ2LjM4NjIgMTUzSDExNC44QzEyNC41NDggMTUzIDEzMy4xODcgMTQ2LjcyMyAxMzYuMTk5IDEzNy40NTNMMTU3LjM0IDcyLjM4NzFDMTYwLjM1MiA2My4xMTY2IDE1Ny4wNTMgNTIuOTYwOCAxNDkuMTY3IDQ3LjIzMTNMOTMuODE4NSA3LjAxODQ4WiIgZmlsbD0iIzMyNkNFNSIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSI1Ii8+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTM3LjMwMiAxMjkuNTFDMTI3LjE3MSAxMjQuNjgyIDEyMi44OSAxMTIuNTkxIDEyNy43NCAxMDIuNTA1QzEzMC4wNjkgOTcuNjYxMiAxMzQuMjM1IDkzLjkzNzEgMTM5LjMyMiA5Mi4xNTE4QzE0NC40MDkgOTAuMzY2NCAxNTAgOTAuNjY2MSAxNTQuODY0IDkyLjk4NDlDMTY0Ljk5NSA5Ny44MTM0IDE2OS4yNzYgMTA5LjkwNCAxNjQuNDI2IDExOS45OUMxNTkuNTc2IDEzMC4wNzcgMTQ3LjQzMyAxMzQuMzM5IDEzNy4zMDIgMTI5LjUxWiIgZmlsbD0iIzMyNkNFNSIvPiA8cGF0aCBkPSJNMTQ1Ljg5IDk5LjEwMjJDMTQ1LjY2MiA5OS4xMTM2IDE0NS40MzggOTkuMTcgMTQ1LjIzMiA5OS4yNjhMMTM2LjI1MiAxMDMuNTM5QzEzNi4wMiAxMDMuNjUgMTM1LjgxNiAxMDMuODExIDEzNS42NTUgMTA0LjAxQzEzNS40OTQgMTA0LjIwOSAxMzUuMzgxIDEwNC40NDEgMTM1LjMyMyAxMDQuNjlMMTMzLjEwOCAxMTQuMjg0QzEzMy4wNTcgMTE0LjUwNSAxMzMuMDUxIDExNC43MzQgMTMzLjA5MSAxMTQuOTU4QzEzMy4xMzEgMTE1LjE4MSAxMzMuMjE2IDExNS4zOTQgMTMzLjM0MSAxMTUuNTg0QzEzMy4zNzEgMTE1LjYzMSAxMzMuNDA0IDExNS42NzYgMTMzLjQzOCAxMTUuNzE5TDEzOS42NTQgMTIzLjQxMkMxMzkuODE1IDEyMy42MTEgMTQwLjAxOSAxMjMuNzcyIDE0MC4yNTEgMTIzLjg4M0MxNDAuNDg0IDEyMy45OTMgMTQwLjczOSAxMjQuMDUgMTQwLjk5NiAxMjQuMDVMMTUwLjk2NCAxMjQuMDQ4QzE1MS4yMjIgMTI0LjA0OCAxNTEuNDc2IDEyMy45OTEgMTUxLjcwOSAxMjMuODgxQzE1MS45NDEgMTIzLjc3MSAxNTIuMTQ2IDEyMy42MSAxNTIuMzA3IDEyMy40MTFMMTU4LjUyIDExNS43MTdDMTU4LjY4MSAxMTUuNTE4IDE1OC43OTQgMTE1LjI4NSAxNTguODUyIDExNS4wMzdDMTU4LjkwOSAxMTQuNzg4IDE1OC45MDkgMTE0LjUzIDE1OC44NTIgMTE0LjI4MkwxNTYuNjMzIDEwNC42ODdDMTU2LjU3NSAxMDQuNDM5IDE1Ni40NjIgMTA0LjIwNyAxNTYuMzAxIDEwNC4wMDdDMTU2LjE0IDEwMy44MDggMTU1LjkzNiAxMDMuNjQ4IDE1NS43MDQgMTAzLjUzN0wxNDYuNzIzIDk5LjI2OEMxNDYuNDY0IDk5LjE0NDcgMTQ2LjE3NyA5OS4wODc3IDE0NS44OSA5OS4xMDIyWiIgZmlsbD0id2hpdGUiLz4gPHBhdGggZD0iTTE0NS45NzkgMTAyLjM2N0MxNDUuNjgyIDEwMi4zNjcgMTQ1LjQ0MiAxMDIuNjM0IDE0NS40NDIgMTAyLjk2MkMxNDUuNDQyIDEwMi45NjcgMTQ1LjQ0MyAxMDIuOTcyIDE0NS40NDMgMTAyLjk3N0MxNDUuNDQyIDEwMy4wMjEgMTQ1LjQ0IDEwMy4wNzUgMTQ1LjQ0MiAxMDMuMTE0QzE0NS40NDkgMTAzLjMwMyAxNDUuNDkgMTAzLjQ0OCAxNDUuNTE1IDEwMy42MjNDMTQ1LjU2IDEwMy45OTYgMTQ1LjU5OCAxMDQuMzA2IDE0NS41NzUgMTA0LjU5M0MxNDUuNTUyIDEwNC43MDIgMTQ1LjQ3MiAxMDQuODAxIDE0NS40IDEwNC44N0wxNDUuMzg4IDEwNS4wOTZDMTQ1LjA2NSAxMDUuMTIzIDE0NC43NCAxMDUuMTcyIDE0NC40MTYgMTA1LjI0NUMxNDMuMDIgMTA1LjU2MSAxNDEuODE5IDEwNi4yNzYgMTQwLjkwNCAxMDcuMjQyQzE0MC44NDUgMTA3LjIwMiAxNDAuNzQxIDEwNy4xMjggMTQwLjcxIDEwNy4xMDVDMTQwLjYxNCAxMDcuMTE4IDE0MC41MTcgMTA3LjE0OCAxNDAuMzkxIDEwNy4wNzRDMTQwLjE1IDEwNi45MTMgMTM5LjkzMSAxMDYuNjkxIDEzOS42NjYgMTA2LjQyM0MxMzkuNTQ0IDEwNi4yOTQgMTM5LjQ1NyAxMDYuMTcyIDEzOS4zMTIgMTA2LjA0OUMxMzkuMjc5IDEwNi4wMjEgMTM5LjIyOSAxMDUuOTgzIDEzOS4xOTMgMTA1Ljk1NEMxMzkuMDggMTA1Ljg2NCAxMzguOTQ3IDEwNS44MTggMTM4LjgxOCAxMDUuODEzQzEzOC42NTMgMTA1LjgwOCAxMzguNDk0IDEwNS44NzIgMTM4LjM5IDEwNi4wMDJDMTM4LjIwNSAxMDYuMjMzIDEzOC4yNjQgMTA2LjU4NiAxMzguNTIyIDEwNi43OTFDMTM4LjUyNSAxMDYuNzkzIDEzOC41MjcgMTA2Ljc5NSAxMzguNTMgMTA2Ljc5N0MxMzguNTY2IDEwNi44MjUgMTM4LjYwOSAxMDYuODYyIDEzOC42NDIgMTA2Ljg4NkMxMzguNzk1IDEwNi45OTggMTM4LjkzNSAxMDcuMDU2IDEzOS4wODcgMTA3LjE0NUMxMzkuNDA5IDEwNy4zNDMgMTM5LjY3NSAxMDcuNTA3IDEzOS44ODYgMTA3LjcwNEMxMzkuOTY5IDEwNy43OTIgMTM5Ljk4MyAxMDcuOTQ2IDEzOS45OTQgMTA4LjAxM0wxNDAuMTY3IDEwOC4xNjZDMTM5LjI0NCAxMDkuNTQ4IDEzOC44MTggMTExLjI1NCAxMzkuMDcgMTEyLjk5M0wxMzguODQ1IDExMy4wNThDMTM4Ljc4NSAxMTMuMTM1IDEzOC43MDIgMTEzLjI1NSAxMzguNjE0IDExMy4yOTFDMTM4LjMzNyAxMTMuMzc3IDEzOC4wMjYgMTEzLjQwOSAxMzcuNjUgMTEzLjQ0OEMxMzcuNDc0IDExMy40NjMgMTM3LjMyMiAxMTMuNDU0IDEzNy4xMzUgMTEzLjQ5QzEzNy4wOTQgMTEzLjQ5NyAxMzcuMDM2IDExMy41MTIgMTM2Ljk5MSAxMTMuNTIzQzEzNi45OSAxMTMuNTIzIDEzNi45ODggMTEzLjUyMyAxMzYuOTg3IDExMy41MjRDMTM2Ljk4NCAxMTMuNTI0IDEzNi45ODEgMTEzLjUyNiAxMzYuOTc5IDExMy41MjZDMTM2LjY2MiAxMTMuNjAyIDEzNi40NTggMTEzLjg5MiAxMzYuNTI0IDExNC4xNzhDMTM2LjU4OSAxMTQuNDYzIDEzNi44OTkgMTE0LjYzNyAxMzcuMjE3IDExNC41NjlDMTM3LjIyIDExNC41NjggMTM3LjIyMyAxMTQuNTY4IDEzNy4yMjUgMTE0LjU2OEMxMzcuMjI5IDExNC41NjcgMTM3LjIzMiAxMTQuNTY1IDEzNy4yMzYgMTE0LjU2NEMxMzcuMjggMTE0LjU1NSAxMzcuMzM2IDExNC41NDQgMTM3LjM3NSAxMTQuNTMzQzEzNy41NTkgMTE0LjQ4NCAxMzcuNjkyIDExNC40MTIgMTM3Ljg1NyAxMTQuMzQ5QzEzOC4yMTMgMTE0LjIyMiAxMzguNTA3IDExNC4xMTYgMTM4Ljc5NCAxMTQuMDc1QzEzOC45MTQgMTE0LjA2NiAxMzkuMDQgMTE0LjE0OCAxMzkuMTAzIDExNC4xODNMMTM5LjMzNyAxMTQuMTQzQzEzOS44NzcgMTE1LjgwOCAxNDEuMDA2IDExNy4xNTIgMTQyLjQzNyAxMTcuOTk2TDE0Mi4zNCAxMTguMjNDMTQyLjM3NSAxMTguMzIgMTQyLjQxNCAxMTguNDQzIDE0Mi4zODcgMTE4LjUzMkMxNDIuMjgzIDExOC44MDIgMTQyLjEwNCAxMTkuMDg2IDE0MS45MDEgMTE5LjQwM0MxNDEuODAyIDExOS41NDkgMTQxLjcwMSAxMTkuNjYzIDE0MS42MTMgMTE5LjgzQzE0MS41OTEgMTE5Ljg3IDE0MS41NjQgMTE5LjkzMiAxNDEuNTQ0IDExOS45NzRDMTQxLjQwNiAxMjAuMjY5IDE0MS41MDcgMTIwLjYwNyAxNDEuNzcyIDEyMC43MzVDMTQyLjAzOSAxMjAuODYzIDE0Mi4zNzEgMTIwLjcyOCAxNDIuNTE0IDEyMC40MzNDMTQyLjUxNCAxMjAuNDMyIDE0Mi41MTUgMTIwLjQzMiAxNDIuNTE1IDEyMC40MzJDMTQyLjUxNSAxMjAuNDMxIDE0Mi41MTUgMTIwLjQzMSAxNDIuNTE1IDEyMC40MzFDMTQyLjUzNiAxMjAuMzg5IDE0Mi41NjUgMTIwLjMzNCAxNDIuNTgyIDEyMC4yOTRDMTQyLjY1OCAxMjAuMTIxIDE0Mi42ODMgMTE5Ljk3MiAxNDIuNzM3IDExOS44MDRDMTQyLjg3OSAxMTkuNDQ4IDE0Mi45NTcgMTE5LjA3NSAxNDMuMTUzIDExOC44NDNDMTQzLjIwNyAxMTguNzc5IDE0My4yOTQgMTE4Ljc1NSAxNDMuMzg1IDExOC43M0wxNDMuNTA2IDExOC41MTFDMTQ0Ljc1NCAxMTguOTg4IDE0Ni4xNSAxMTkuMTE1IDE0Ny41NDQgMTE4LjhDMTQ3Ljg2MyAxMTguNzI4IDE0OC4xNyAxMTguNjM1IDE0OC40NjcgMTE4LjUyNEMxNDguNTAxIDExOC41ODQgMTQ4LjU2NCAxMTguNyAxNDguNTgxIDExOC43MjlDMTQ4LjY3NCAxMTguNzU5IDE0OC43NzQgMTE4Ljc3NSAxNDguODU2IDExOC44OTVDMTQ5LjAwMiAxMTkuMTQ0IDE0OS4xMDMgMTE5LjQzOSAxNDkuMjI1IDExOS43OTVDMTQ5LjI3OCAxMTkuOTYzIDE0OS4zMDUgMTIwLjExMiAxNDkuMzgxIDEyMC4yODVDMTQ5LjM5OCAxMjAuMzI1IDE0OS40MjcgMTIwLjM4MSAxNDkuNDQ3IDEyMC40MjNDMTQ5LjU5MSAxMjAuNzE4IDE0OS45MjMgMTIwLjg1NCAxNTAuMTkgMTIwLjcyNkMxNTAuNDU2IDEyMC41OTggMTUwLjU1NyAxMjAuMjU5IDE1MC40MTkgMTE5Ljk2NUMxNTAuMzk4IDExOS45MjMgMTUwLjM3IDExOS44NjEgMTUwLjM0OSAxMTkuODIxQzE1MC4yNiAxMTkuNjU0IDE1MC4xNTkgMTE5LjU0MSAxNTAuMDYxIDExOS4zOTVDMTQ5Ljg1NyAxMTkuMDc4IDE0OS42ODggMTE4LjgxNSAxNDkuNTg0IDExOC41NDVDMTQ5LjU0IDExOC40MDYgMTQ5LjU5MSAxMTguMzIgMTQ5LjYyNSAxMTguMjNDMTQ5LjYwNSAxMTguMjA2IDE0OS41NjEgMTE4LjA3NSAxNDkuNTM2IDExOC4wMTRDMTUxLjAyMyAxMTcuMTQgMTUyLjExOSAxMTUuNzQ0IDE1Mi42MzQgMTE0LjEzM0MxNTIuNzA0IDExNC4xNDQgMTUyLjgyNSAxMTQuMTY1IDE1Mi44NjQgMTE0LjE3M0MxNTIuOTQ1IDExNC4xMiAxNTMuMDE5IDExNC4wNTEgMTUzLjE2NSAxMTQuMDYyQzE1My40NTIgMTE0LjEwNCAxNTMuNzQ2IDExNC4yMSAxNTQuMTAyIDExNC4zMzdDMTU0LjI2NyAxMTQuNCAxNTQuNDAxIDExNC40NzMgMTU0LjU4NCAxMTQuNTIyQzE1NC42MjMgMTE0LjUzMiAxNTQuNjc5IDExNC41NDIgMTU0LjcyMyAxMTQuNTUyQzE1NC43MjcgMTE0LjU1MyAxNTQuNzMgMTE0LjU1NCAxNTQuNzM0IDExNC41NTVDMTU0LjczNiAxMTQuNTU2IDE1NC43MzkgMTE0LjU1NiAxNTQuNzQyIDExNC41NTZDMTU1LjA2IDExNC42MjUgMTU1LjM3IDExNC40NTEgMTU1LjQzNSAxMTQuMTY1QzE1NS41MDEgMTEzLjg4IDE1NS4yOTcgMTEzLjU5IDE1NC45ODEgMTEzLjUxNEMxNTQuOTM1IDExMy41MDMgMTU0Ljg2OSAxMTMuNDg1IDE1NC44MjQgMTEzLjQ3N0MxNTQuNjM3IDExMy40NDIgMTU0LjQ4NSAxMTMuNDUgMTU0LjMwOSAxMTMuNDM2QzE1My45MzMgMTEzLjM5NyAxNTMuNjIyIDExMy4zNjUgMTUzLjM0NSAxMTMuMjc4QzE1My4yMzIgMTEzLjIzNCAxNTMuMTUyIDExMy4xMDEgMTUzLjExMyAxMTMuMDQ2TDE1Mi44OTYgMTEyLjk4M0MxNTMuMDA5IDExMi4xNzIgMTUyLjk3OCAxMTEuMzI5IDE1Mi43ODQgMTEwLjQ4NUMxNTIuNTg3IDEwOS42MzMgMTUyLjI0IDEwOC44NTQgMTUxLjc3NiAxMDguMTY3QzE1MS44MzIgMTA4LjExNyAxNTEuOTM3IDEwOC4wMjQgMTUxLjk2NyAxMDcuOTk3QzE1MS45NzYgMTA3LjkwMSAxNTEuOTY4IDEwNy44IDE1Mi4wNjggMTA3LjY5NEMxNTIuMjggMTA3LjQ5NiAxNTIuNTQ2IDEwNy4zMzMgMTUyLjg2NyAxMDcuMTM1QzE1My4wMiAxMDcuMDQ2IDE1My4xNjEgMTA2Ljk4OCAxNTMuMzE0IDEwNi44NzVDMTUzLjM0OSAxMDYuODUgMTUzLjM5NiAxMDYuODEgMTUzLjQzMyAxMDYuNzgxQzE1My42OSAxMDYuNTc2IDE1My43NSAxMDYuMjIzIDE1My41NjUgMTA1Ljk5MkMxNTMuMzc5IDEwNS43NjEgMTUzLjAyMSAxMDUuNzM5IDE1Mi43NjMgMTA1Ljk0NEMxNTIuNzI2IDEwNS45NzMgMTUyLjY3NiAxMDYuMDEgMTUyLjY0NCAxMDYuMDM5QzE1Mi40OTkgMTA2LjE2MiAxNTIuNDEgMTA2LjI4NCAxNTIuMjg5IDEwNi40MTJDMTUyLjAyNCAxMDYuNjggMTUxLjgwNSAxMDYuOTA0IDE1MS41NjQgMTA3LjA2NUMxNTEuNDYgMTA3LjEyNiAxNTEuMzA3IDEwNy4xMDUgMTUxLjIzOCAxMDcuMTAxTDE1MS4wMzMgMTA3LjI0NkMxNDkuODY4IDEwNi4wMjkgMTQ4LjI4MSAxMDUuMjUxIDE0Ni41NzIgMTA1LjFDMTQ2LjU2NyAxMDUuMDI5IDE0Ni41NjEgMTA0LjkgMTQ2LjU1OSAxMDQuODYxQzE0Ni40ODkgMTA0Ljc5NCAxNDYuNDA1IDEwNC43MzcgMTQ2LjM4MyAxMDQuNTkzQzE0Ni4zNiAxMDQuMzA2IDE0Ni4zOTkgMTAzLjk5NiAxNDYuNDQ0IDEwMy42MjNDMTQ2LjQ2OSAxMDMuNDQ4IDE0Ni41MTEgMTAzLjMwMyAxNDYuNTE4IDEwMy4xMTRDMTQ2LjUxOSAxMDMuMDcxIDE0Ni41MTcgMTAzLjAwOCAxNDYuNTE3IDEwMi45NjJDMTQ2LjUxNiAxMDIuNjM0IDE0Ni4yNzYgMTAyLjM2NyAxNDUuOTc5IDEwMi4zNjdIMTQ1Ljk3OVpNMTQ1LjMwNiAxMDYuNTE4TDE0NS4xNDYgMTA5LjMyNEwxNDUuMTM1IDEwOS4zM0MxNDUuMTI0IDEwOS41ODEgMTQ0LjkxNyAxMDkuNzgyIDE0NC42NjIgMTA5Ljc4MkMxNDQuNTU3IDEwOS43ODIgMTQ0LjQ2MSAxMDkuNzQ4IDE0NC4zODMgMTA5LjY5MUwxNDQuMzc4IDEwOS42OTRMMTQyLjA2NiAxMDguMDYyQzE0Mi43NzcgMTA3LjM2NyAxNDMuNjg2IDEwNi44NTMgMTQ0LjczMyAxMDYuNjE2QzE0NC45MjQgMTA2LjU3MyAxNDUuMTE2IDEwNi41NDEgMTQ1LjMwNiAxMDYuNTE4Wk0xNDYuNjUzIDEwNi41MThDMTQ3Ljg3NiAxMDYuNjY3IDE0OS4wMDcgMTA3LjIxOSAxNDkuODczIDEwOC4wNjNMMTQ3LjU3NyAxMDkuNjg1TDE0Ny41NjggMTA5LjY4MUMxNDcuMzY1IDEwOS44MjkgMTQ3LjA3NyAxMDkuNzkzIDE0Ni45MTggMTA5LjU5NEMxNDYuODUzIDEwOS41MTMgMTQ2LjgxOSAxMDkuNDE3IDE0Ni44MTUgMTA5LjMyMUwxNDYuODEzIDEwOS4zMkwxNDYuNjUzIDEwNi41MThaTTE0MS4yMjggMTA5LjExMUwxNDMuMzM5IDExMC45OUwxNDMuMzM2IDExMS4wMDJDMTQzLjUyNyAxMTEuMTY3IDE0My41NTUgMTExLjQ1MyAxNDMuMzk2IDExMS42NTFDMTQzLjMzMSAxMTEuNzMyIDE0My4yNDQgMTExLjc4NyAxNDMuMTUgMTExLjgxMkwxNDMuMTQ4IDExMS44MjFMMTQwLjQ0MiAxMTIuNTk5QzE0MC4zMDUgMTExLjM0NSAxNDAuNjAxIDExMC4xMjcgMTQxLjIyOCAxMDkuMTExWk0xNTAuNzE1IDEwOS4xMTJDMTUxLjAyOSAxMDkuNjE4IDE1MS4yNjYgMTEwLjE4MyAxNTEuNDA4IDExMC43OTZDMTUxLjU0NyAxMTEuNDAxIDE1MS41ODMgMTEyLjAwNiAxNTEuNTI1IDExMi41OUwxNDguODA1IDExMS44MUwxNDguODAzIDExMS43OTlDMTQ4LjU2IDExMS43MzIgMTQ4LjQxIDExMS40ODYgMTQ4LjQ2NyAxMTEuMjM4QzE0OC40OSAxMTEuMTM3IDE0OC41NDQgMTExLjA1MSAxNDguNjE3IDExMC45ODhMMTQ4LjYxNiAxMTAuOTgyTDE1MC43MTUgMTA5LjExMkgxNTAuNzE1Wk0xNDUuNTQ2IDExMS4xMzVIMTQ2LjQxMUwxNDYuOTQ4IDExMS44MDRMMTQ2Ljc1NSAxMTIuNjM5TDE0NS45NzkgMTEzLjAxTDE0NS4yIDExMi42MzhMMTQ1LjAwNyAxMTEuODAzTDE0NS41NDYgMTExLjEzNVpNMTQ4LjMxOCAxMTMuNDI0QzE0OC4zNTUgMTEzLjQyMiAxNDguMzkyIDExMy40MjYgMTQ4LjQyOCAxMTMuNDMyTDE0OC40MzIgMTEzLjQyN0wxNTEuMjMxIDExMy44OThDMTUwLjgyMSAxMTUuMDQzIDE1MC4wMzggMTE2LjAzNiAxNDguOTkgMTE2LjdMMTQ3LjkwNCAxMTQuMDg3TDE0Ny45MDcgMTE0LjA4M0MxNDcuODA3IDExMy44NTIgMTQ3LjkwNyAxMTMuNTgxIDE0OC4xMzcgMTEzLjQ3MUMxNDguMTk2IDExMy40NDMgMTQ4LjI1NyAxMTMuNDI3IDE0OC4zMTggMTEzLjQyNEgxNDguMzE4Wk0xNDMuNjE4IDExMy40MzZDMTQzLjgzMSAxMTMuNDM5IDE0NC4wMjMgMTEzLjU4NiAxNDQuMDczIDExMy44MDNDMTQ0LjA5NiAxMTMuOTA0IDE0NC4wODUgMTE0LjAwNCAxNDQuMDQ2IDExNC4wOTNMMTQ0LjA1NCAxMTQuMTAzTDE0Mi45NzkgMTE2LjY5QzE0MS45NzQgMTE2LjA0OCAxNDEuMTc0IDExNS4wODYgMTQwLjc0NSAxMTMuOTA3TDE0My41MiAxMTMuNDM4TDE0My41MjUgMTEzLjQ0NEMxNDMuNTU2IDExMy40MzggMTQzLjU4NyAxMTMuNDM1IDE0My42MTggMTEzLjQzNlYxMTMuNDM2Wk0xNDUuOTYyIDExNC41NjlDMTQ2LjAzNiAxMTQuNTY2IDE0Ni4xMTIgMTE0LjU4MSAxNDYuMTgzIDExNC42MTZDMTQ2LjI3OCAxMTQuNjYxIDE0Ni4zNSAxMTQuNzMyIDE0Ni4zOTYgMTE0LjgxN0gxNDYuNDA2TDE0Ny43NzQgMTE3LjI3N0MxNDcuNTk3IDExNy4zMzcgMTQ3LjQxNCAxMTcuMzg3IDE0Ny4yMjcgMTE3LjQyOUMxNDYuMTgxIDExNy42NjYgMTQ1LjEzOSAxMTcuNTk0IDE0NC4xOTQgMTE3LjI3NEwxNDUuNTU5IDExNC44MThIMTQ1LjU2MUMxNDUuNjQzIDExNC42NjYgMTQ1Ljc5OCAxMTQuNTc1IDE0NS45NjIgMTE0LjU2OVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iIzMyNkNFNSIgc3Ryb2tlLXdpZHRoPSIwLjI1Ii8+IDwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "0", + backgroundImageOpacity: "0", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "pythonapp", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "c19ba597-76f9-4e28-ac53-b95e98b7b7e0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "3", + zIndex: "3", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "python", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA5MCA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNC4wODk5OCAwLjVDMS44MzExNSAwLjUgMCAyLjMzMTE1IDAgNC41ODk5OFY2MS40MUMwIDYzLjY2ODkgMS44MzExNSA2NS41IDQuMDg5OTggNjUuNUg4NS45MUM4OC4xNjg4IDY1LjUgOTAgNjMuNjY4OSA5MCA2MS40MVY0LjU4OTk4QzkwIDIuMzMxMTUgODguMTY4OSAwLjUgODUuOTEgMC41SDQuMDg5OThaTTE4Ljc3MyA0Ny45MjE0QzE4Ljc3MyA0OS4xNDc4IDE3Ljg1MjggNTAuMTY5OCAxNi43NDg1IDUwLjE2OThDMTUuNjQ0MiA1MC4xNjk4IDE0LjcyMzkgNDkuMTQ3OCAxNC43MjM5IDQ3LjkyMTRWMTguMjgzQzE0LjcyMzkgMTcuMDU2NiAxNS42NDQyIDE2LjAzNDYgMTYuNzQ4NSAxNi4wMzQ2QzE3Ljg1MjggMTYuMDM0NiAxOC43NzMgMTcuMDU2NiAxOC43NzMgMTguMjgzVjQ3LjkyMTRaTTM3LjczMDEgNDcuOTIxNEMzNy43MzAxIDQ5LjE0NzggMzYuODA5OCA1MC4xNjk4IDM1LjcwNTUgNTAuMTY5OEMzNC42MDEyIDUwLjE2OTggMzMuNjgxIDQ5LjE0NzggMzMuNjgxIDQ3LjkyMTRWMTguMjgzQzMzLjY4MSAxNy4wNTY2IDM0LjYwMTIgMTYuMDM0NiAzNS43MDU1IDE2LjAzNDZDMzYuODA5OCAxNi4wMzQ2IDM3LjczMDEgMTcuMDU2NiAzNy43MzAxIDE4LjI4M1Y0Ny45MjE0Wk01Ni41MDMxIDQ3LjkyMTRDNTYuNTAzMSA0OS4xNDc4IDU1LjU4MjggNTAuMTY5OCA1NC40Nzg1IDUwLjE2OThDNTMuMzc0MiA1MC4xNjk4IDUyLjQ1NCA0OS4xNDc4IDUyLjQ1NCA0Ny45MjE0VjE4LjI4M0M1Mi40NTQgMTcuMDU2NiA1My4zNzQyIDE2LjAzNDYgNTQuNDc4NSAxNi4wMzQ2QzU1LjU4MjggMTYuMDM0NiA1Ni41MDMxIDE3LjA1NjYgNTYuNTAzMSAxOC4yODNWNDcuOTIxNFpNNzUuMjc2MSA0Ny45MjE0Qzc1LjI3NjEgNDkuMTQ3OCA3NC4zNTU4IDUwLjE2OTggNzMuMjUxNSA1MC4xNjk4QzcyLjE0NzIgNTAuMTY5OCA3MS4yMjcgNDkuMTQ3OCA3MS4yMjcgNDcuOTIxNFYxOC4yODNDNzEuMjI3IDE3LjA1NjYgNzIuMTQ3MiAxNi4wMzQ2IDczLjI1MTUgMTYuMDM0NkM3NC4zNTU4IDE2LjAzNDYgNzUuMjc2MSAxNy4wNTY2IDc1LjI3NjEgMTguMjgzVjQ3LjkyMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "python", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-03016ef6-7124-4169-a5c0-f403711d480d .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-03016ef6-7124-4169-a5c0-f403711d480d .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-03016ef6-7124-4169-a5c0-f403711d480d .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-03016ef6-7124-4169-a5c0-f403711d480d" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-03016ef6-7124-4169-a5c0-f403711d480d" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-03016ef6-7124-4169-a5c0-f403711d480d-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-03016ef6-7124-4169-a5c0-f403711d480d-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-redis.js b/static/embed-test/embedded-design-redis.js new file mode 100644 index 000000000000..2e321531655e --- /dev/null +++ b/static/embed-test/embedded-design-redis.js @@ -0,0 +1,7736 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "13f72f39-ca34-46b7-9369-c57e705f9144", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-replicas", + services: { + "13f72f39-ca34-46b7-9369-c57e705f9144": { + namespace: "default", + settings: { + spec: { + ports: [ + { + name: "tcp-redis", + "node Port": null, + port: 6379, + "target Port": "redis" + } + ], + selector: { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + }, + "session Affinity": "None", + type: "ClusterIP" + }, + name: "redis-replicas", + namespace: "default", + labels: { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "13f72f39-ca34-46b7-9369-c57e705f9144", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 9 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -98.5, posY: -25 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -98.5, y: -25 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "d5a87d27-8891-4103-bf07-a611d3f28feb", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-headless", + services: { + "d5a87d27-8891-4103-bf07-a611d3f28feb": { + namespace: "default", + settings: { + spec: { + "cluster IP": "None", + ports: [{ name: "tcp-redis", port: 6379, "target Port": "redis" }], + selector: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + }, + type: "ClusterIP" + }, + name: "redis-headless", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "d5a87d27-8891-4103-bf07-a611d3f28feb", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -8.13150501917703, posY: -106.31505019177011 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -8.13150501917703, y: -106.31505019177011 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b8e45445-623b-45e8-bcc5-c929897a26f0", + type: "ConfigMap", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-health", + services: { + "b8e45445-623b-45e8-bcc5-c929897a26f0": { + namespace: "default", + settings: { + data: { + "ping_liveness_local.sh": + '#!/bin/bash\n\n[[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")"\n[[ -n "$REDIS_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_PASSWORD"\nresponse=$(\n timeout -s 15 $1 \\\n redis-cli \\\n -h localhost \\\n -p $REDIS_PORT \\\n ping\n)\nif [ "$?" -eq "124" ]; then\n echo "Timed out"\n exit 1\nfi\nresponseFirstWord=$(echo $response | head -n1 | awk \'{print $1;}\')\nif [ "$response" != "PONG" ] && [ "$responseFirstWord" != "LOADING" ] && [ "$responseFirstWord" != "MASTERDOWN" ]; then\n echo "$response"\n exit 1\nfi', + "ping_liveness_local_and_master.sh": + 'script_dir="$(dirname "$0")"\nexit_status=0\n"$script_dir/ping_liveness_local.sh" $1 || exit_status=$?\n"$script_dir/ping_liveness_master.sh" $1 || exit_status=$?\nexit $exit_status', + "ping_liveness_master.sh": + '#!/bin/bash\n\n[[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")"\n[[ -n "$REDIS_MASTER_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_MASTER_PASSWORD"\nresponse=$(\n timeout -s 15 $1 \\\n redis-cli \\\n -h $REDIS_MASTER_HOST \\\n -p $REDIS_MASTER_PORT_NUMBER \\\n ping\n)\nif [ "$?" -eq "124" ]; then\n echo "Timed out"\n exit 1\nfi\nresponseFirstWord=$(echo $response | head -n1 | awk \'{print $1;}\')\nif [ "$response" != "PONG" ] && [ "$responseFirstWord" != "LOADING" ]; then\n echo "$response"\n exit 1\nfi', + "ping_readiness_local.sh": + '#!/bin/bash\n\n[[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")"\n[[ -n "$REDIS_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_PASSWORD"\nresponse=$(\n timeout -s 15 $1 \\\n redis-cli \\\n -h localhost \\\n -p $REDIS_PORT \\\n ping\n)\nif [ "$?" -eq "124" ]; then\n echo "Timed out"\n exit 1\nfi\nif [ "$response" != "PONG" ]; then\n echo "$response"\n exit 1\nfi', + "ping_readiness_local_and_master.sh": + 'script_dir="$(dirname "$0")"\nexit_status=0\n"$script_dir/ping_readiness_local.sh" $1 || exit_status=$?\n"$script_dir/ping_readiness_master.sh" $1 || exit_status=$?\nexit $exit_status', + "ping_readiness_master.sh": + '#!/bin/bash\n\n[[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")"\n[[ -n "$REDIS_MASTER_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_MASTER_PASSWORD"\nresponse=$(\n timeout -s 15 $1 \\\n redis-cli \\\n -h $REDIS_MASTER_HOST \\\n -p $REDIS_MASTER_PORT_NUMBER \\\n ping\n)\nif [ "$?" -eq "124" ]; then\n echo "Timed out"\n exit 1\nfi\nif [ "$response" != "PONG" ]; then\n echo "$response"\n exit 1\nfi' + }, + name: "redis-health", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b8e45445-623b-45e8-bcc5-c929897a26f0", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 12 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/configmap-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/configmap-white.svg" + }, + position: { posX: -102, posY: 107 }, + whiteboardData: { style: {} } + } + }, + type: "ConfigMap" + } + } + } + }, + position: { x: -102, y: 107 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "58b68215-37ec-420c-bdcf-d1891a8e64d7", + type: "PodDisruptionBudget", + apiVersion: "policy/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-master", + services: { + "58b68215-37ec-420c-bdcf-d1891a8e64d7": { + namespace: "default", + settings: { + spec: { + "max Unavailable": 1, + selector: { + "match Labels": { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + } + }, + name: "redis-master", + namespace: "default", + labels: { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "58b68215-37ec-420c-bdcf-d1891a8e64d7", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "concave-hexagon", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 13 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/poddisruptionbudget-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/poddisruptionbudget-white.svg" + }, + position: { posX: 62, posY: -106 }, + whiteboardData: { style: {} } + } + }, + type: "PodDisruptionBudget" + } + } + } + }, + position: { x: 62, y: -106 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "ba5208c6-8cd0-4892-a1ce-963b119dc06f", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-replica", + services: { + "ba5208c6-8cd0-4892-a1ce-963b119dc06f": { + namespace: "default", + settings: { + "automount Service Account Token": false, + name: "redis-replica", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "ba5208c6-8cd0-4892-a1ce-963b119dc06f", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 5 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: -100.5, posY: 44 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: -100.5, y: 44 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "2d0d2a71-ef39-4b07-a7bd-56ed39a116d1", + type: "PodDisruptionBudget", + apiVersion: "policy/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-replicas", + services: { + "2d0d2a71-ef39-4b07-a7bd-56ed39a116d1": { + namespace: "default", + settings: { + spec: { + "max Unavailable": 1, + selector: { + "match Labels": { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + } + }, + name: "redis-replicas", + namespace: "default", + labels: { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "2d0d2a71-ef39-4b07-a7bd-56ed39a116d1", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "concave-hexagon", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 10 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/poddisruptionbudget-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/poddisruptionbudget-white.svg" + }, + position: { posX: 36.5, posY: -31 }, + whiteboardData: { style: {} } + } + }, + type: "PodDisruptionBudget" + } + } + } + }, + position: { x: 36.5, y: -31 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "76832250-a439-46dc-951f-c146b1743fe1", + type: "Secret", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis", + services: { + "76832250-a439-46dc-951f-c146b1743fe1": { + namespace: "default", + settings: { + data: { "redis-password": "OGd4WG9VRzRQWA==" }, + type: "Opaque", + name: "redis", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "76832250-a439-46dc-951f-c146b1743fe1", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: "Created by Meshery Authors", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "shield", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-clip": "node", + "background-image-containment": "over", + "background-opacity": "0", + height: 32, + padding: 1, + width: 32, + "z-index": 4 + }, + styles: + '{"height":32,"width":32,"background-clip":"node","background-image-containment":"over","padding":1,"background-opacity":"0"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/secret-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/secret-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/secret-white.svg" + }, + position: { posX: 17.5, posY: 108 }, + whiteboardData: { style: {} } + } + }, + type: "Secret" + } + } + } + }, + position: { x: 17.5, y: 108 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "fbdd7b0c-2f5f-4192-b17e-79b85331f109", + type: "Service", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-master", + services: { + "fbdd7b0c-2f5f-4192-b17e-79b85331f109": { + namespace: "default", + settings: { + spec: { + ports: [ + { + name: "tcp-redis", + "node Port": null, + port: 6379, + "target Port": "redis" + } + ], + selector: { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + }, + "session Affinity": "None", + type: "ClusterIP" + }, + name: "redis-master", + namespace: "default", + labels: { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "fbdd7b0c-2f5f-4192-b17e-79b85331f109", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "round-triangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-position-y": 4.5, + height: 20, + padding: 12, + width: 20, + x: "10px", + y: "12px", + "z-index": 3 + }, + styles: + '{"height":20,"width":20,"padding":12,"background-position-y":4.5,"x":"10px","y":"12px"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/service-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/service-white.svg" + }, + position: { posX: -31, posY: -25 }, + whiteboardData: { style: {} } + } + }, + type: "Service" + } + } + } + }, + position: { x: -31, y: -25 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "a2e159e1-a6ee-424b-b284-252e56bef0e7", + type: "ServiceAccount", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-master", + services: { + "a2e159e1-a6ee-424b-b284-252e56bef0e7": { + namespace: "default", + settings: { + "automount Service Account Token": false, + name: "redis-master", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "a2e159e1-a6ee-424b-b284-252e56bef0e7", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 8 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/serviceaccount-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/serviceaccount-white.svg" + }, + position: { posX: 31, posY: 44 }, + whiteboardData: { style: {} } + } + }, + type: "ServiceAccount" + } + } + } + }, + position: { x: 31, y: 44 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "e5817cf6-1c84-4aed-a8c4-d6fa34a5bfce", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-master", + services: { + "e5817cf6-1c84-4aed-a8c4-d6fa34a5bfce": { + namespace: "default", + settings: { + spec: { + replicas: 1, + "revision History Limit": 10, + selector: { + "match Labels": { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + }, + "service Name": "redis-headless", + template: { + metadata: { + annotations: { + "checksum/configmap": + "86bcc953bb473748a3d3dc60b7c11f34e60c93519234d4c37f42e22ada559d47", + "checksum/health": + "aff24913d801436ea469d8d374b2ddb3ec4c43ee7ab24663d5f8ff1a1b6991a9", + "checksum/scripts": + "bb405ab6e14129d9c1652d99ffde3146c358de2ef89164a4c63bb0b1894e7537", + "checksum/secret": + "5a2e244602f54dd2801305480104d869c7af77c8e7a90cb53debc0f9849bc062" + }, + labels: { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + spec: { + affinity: { + "node Affinity": null, + "pod Affinity": null, + "pod Anti Affinity": { + "preferred During Scheduling Ignored During Execution": [ + { + "pod Affinity Term": { + "label Selector": { + "match Labels": { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + }, + "topology Key": "kubernetes.io/hostname" + }, + weight: 1 + } + ] + } + }, + "automount Service Account Token": false, + containers: [ + { + args: [ + "-c", + "/opt/bitnami/scripts/start-scripts/start-master.sh" + ], + command: ["/bin/bash"], + env: [ + { name: "BITNAMI_DEBUG", value: "false" }, + { name: "REDIS_REPLICATION_MODE", value: "master" }, + { name: "ALLOW_EMPTY_PASSWORD", value: "no" }, + { + name: "REDIS_PASSWORD", + "value From": { + "secret Key Ref": { + key: "redis-password", + name: "redis" + } + } + }, + { name: "REDIS_TLS_ENABLED", value: "no" }, + { name: "REDIS_PORT", value: "6379" } + ], + image: "docker.io/bitnami/redis:7.2.5-debian-12-r2", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + exec: { + command: ["sh", "-c", "/health/ping_liveness_local.sh 5"] + }, + "failure Threshold": 5, + "initial Delay Seconds": 20, + "period Seconds": 5, + "success Threshold": 1, + "timeout Seconds": 6 + }, + name: "redis", + ports: [{ "container Port": 6379, name: "redis" }], + "readiness Probe": { + exec: { + command: ["sh", "-c", "/health/ping_readiness_local.sh 1"] + }, + "failure Threshold": 5, + "initial Delay Seconds": 20, + "period Seconds": 5, + "success Threshold": 1, + "timeout Seconds": 2 + }, + resources: { + limits: { + cpu: "150m", + "ephemeral-storage": "2Gi", + memory: "192Mi" + }, + requests: { + cpu: "100m", + "ephemeral-storage": "50Mi", + memory: "128Mi" + } + }, + "security Context": { + "allow Privilege Escalation": false, + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Group": 1001, + "run As Non Root": true, + "run As User": 1001, + "se Linux Options": {}, + "seccomp Profile": { type: "RuntimeDefault" } + }, + "volume Mounts": [ + { + "mount Path": "/opt/bitnami/scripts/start-scripts", + name: "start-scripts" + }, + { "mount Path": "/health", name: "health" }, + { "mount Path": "/data", name: "redis-data" }, + { + "mount Path": "/opt/bitnami/redis/mounted-etc", + name: "config" + }, + { + "mount Path": "/opt/bitnami/redis/etc/", + name: "empty-dir", + "sub Path": "app-conf-dir" + }, + { + "mount Path": "/tmp", + name: "empty-dir", + "sub Path": "tmp-dir" + } + ] + } + ], + "enable Service Links": true, + "security Context": { + "fs Group": 1001, + "fs Group Change Policy": "Always", + "supplemental Groups": [], + sysctls: [] + }, + "service Account Name": "redis-master", + "termination Grace Period Seconds": 30, + volumes: [ + { + "config Map": { "default Mode": 493, name: "redis-scripts" }, + name: "start-scripts" + }, + { + "config Map": { "default Mode": 493, name: "redis-health" }, + name: "health" + }, + { + "config Map": { name: "redis-configuration" }, + name: "config" + }, + { "empty Dir": {}, name: "empty-dir" } + ] + } + }, + "update Strategy": { type: "RollingUpdate" }, + "volume Claim Templates": [ + { + "api Version": "v1", + kind: "PersistentVolumeClaim", + metadata: { + labels: { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + }, + name: "redis-data" + }, + spec: { + "access Modes": ["ReadWriteOnce"], + resources: { requests: { storage: "8Gi" } } + } + } + ] + }, + name: "redis-master", + namespace: "default", + labels: { + "app.kubernetes.io/component": "master", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "e5817cf6-1c84-4aed-a8c4-d6fa34a5bfce", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 11 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: -38, posY: 104.5 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: -38, y: 104.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "4ebb716a-b777-46fb-a0c1-d15dfb47cb9f", + type: "StatefulSet", + apiVersion: "apps/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-replicas", + services: { + "4ebb716a-b777-46fb-a0c1-d15dfb47cb9f": { + namespace: "default", + settings: { + spec: { + replicas: 3, + "revision History Limit": 10, + selector: { + "match Labels": { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + }, + "service Name": "redis-headless", + template: { + metadata: { + annotations: { + "checksum/configmap": + "86bcc953bb473748a3d3dc60b7c11f34e60c93519234d4c37f42e22ada559d47", + "checksum/health": + "aff24913d801436ea469d8d374b2ddb3ec4c43ee7ab24663d5f8ff1a1b6991a9", + "checksum/scripts": + "bb405ab6e14129d9c1652d99ffde3146c358de2ef89164a4c63bb0b1894e7537", + "checksum/secret": + "678ed249f7d80f884553ace4c8d9b747183e59b400408eb9d5fe607a76083ddc" + }, + labels: { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + spec: { + affinity: { + "node Affinity": null, + "pod Affinity": null, + "pod Anti Affinity": { + "preferred During Scheduling Ignored During Execution": [ + { + "pod Affinity Term": { + "label Selector": { + "match Labels": { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + }, + "topology Key": "kubernetes.io/hostname" + }, + weight: 1 + } + ] + } + }, + "automount Service Account Token": false, + containers: [ + { + args: [ + "-c", + "/opt/bitnami/scripts/start-scripts/start-replica.sh" + ], + command: ["/bin/bash"], + env: [ + { name: "BITNAMI_DEBUG", value: "false" }, + { name: "REDIS_REPLICATION_MODE", value: "replica" }, + { + name: "REDIS_MASTER_HOST", + value: + "redis-master-0.redis-headless.default.svc.cluster.local" + }, + { name: "REDIS_MASTER_PORT_NUMBER", value: "6379" }, + { name: "ALLOW_EMPTY_PASSWORD", value: "no" }, + { + name: "REDIS_PASSWORD", + "value From": { + "secret Key Ref": { + key: "redis-password", + name: "redis" + } + } + }, + { + name: "REDIS_MASTER_PASSWORD", + "value From": { + "secret Key Ref": { + key: "redis-password", + name: "redis" + } + } + }, + { name: "REDIS_TLS_ENABLED", value: "no" }, + { name: "REDIS_PORT", value: "6379" } + ], + image: "docker.io/bitnami/redis:7.2.5-debian-12-r2", + "image Pull Policy": "IfNotPresent", + "liveness Probe": { + exec: { + command: [ + "sh", + "-c", + "/health/ping_liveness_local_and_master.sh 5" + ] + }, + "failure Threshold": 5, + "initial Delay Seconds": 20, + "period Seconds": 5, + "success Threshold": 1, + "timeout Seconds": 6 + }, + name: "redis", + ports: [{ "container Port": 6379, name: "redis" }], + "readiness Probe": { + exec: { + command: [ + "sh", + "-c", + "/health/ping_readiness_local_and_master.sh 1" + ] + }, + "failure Threshold": 5, + "initial Delay Seconds": 20, + "period Seconds": 5, + "success Threshold": 1, + "timeout Seconds": 2 + }, + resources: { + limits: { + cpu: "150m", + "ephemeral-storage": "2Gi", + memory: "192Mi" + }, + requests: { + cpu: "100m", + "ephemeral-storage": "50Mi", + memory: "128Mi" + } + }, + "security Context": { + "allow Privilege Escalation": false, + capabilities: { drop: ["ALL"] }, + "read Only Root Filesystem": true, + "run As Group": 1001, + "run As Non Root": true, + "run As User": 1001, + "se Linux Options": {}, + "seccomp Profile": { type: "RuntimeDefault" } + }, + "startup Probe": { + "failure Threshold": 22, + "initial Delay Seconds": 10, + "period Seconds": 10, + "success Threshold": 1, + "tcp Socket": { port: "redis" }, + "timeout Seconds": 5 + }, + "volume Mounts": [ + { + "mount Path": "/opt/bitnami/scripts/start-scripts", + name: "start-scripts" + }, + { "mount Path": "/health", name: "health" }, + { "mount Path": "/data", name: "redis-data" }, + { + "mount Path": "/opt/bitnami/redis/mounted-etc", + name: "config" + }, + { + "mount Path": "/opt/bitnami/redis/etc", + name: "empty-dir", + "sub Path": "app-conf-dir" + }, + { + "mount Path": "/tmp", + name: "empty-dir", + "sub Path": "tmp-dir" + } + ] + } + ], + "enable Service Links": true, + "security Context": { + "fs Group": 1001, + "fs Group Change Policy": "Always", + "supplemental Groups": [], + sysctls: [] + }, + "service Account Name": "redis-replica", + "termination Grace Period Seconds": 30, + volumes: [ + { + "config Map": { "default Mode": 493, name: "redis-scripts" }, + name: "start-scripts" + }, + { + "config Map": { "default Mode": 493, name: "redis-health" }, + name: "health" + }, + { + "config Map": { name: "redis-configuration" }, + name: "config" + }, + { "empty Dir": {}, name: "empty-dir" } + ] + } + }, + "update Strategy": { type: "RollingUpdate" }, + "volume Claim Templates": [ + { + "api Version": "v1", + kind: "PersistentVolumeClaim", + metadata: { + labels: { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + }, + name: "redis-data" + }, + spec: { + "access Modes": ["ReadWriteOnce"], + resources: { requests: { storage: "8Gi" } } + } + } + ] + }, + name: "redis-replicas", + namespace: "default", + labels: { + "app.kubernetes.io/component": "replica", + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "4ebb716a-b777-46fb-a0c1-d15dfb47cb9f", + "meshmodel-metadata": { + capabilities: + ' {\n "designer": {\n "edit": {\n "shape": {\n "convert-shape": false\n }\n }\n }\n}', + defaultData: "", + genealogy: "parent", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "cylinder", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "background-opacity": "0.2", + height: "15", + width: "15", + x: "12", + y: "20", + "z-index": 14 + }, + styles: + '{"height":"15","width":"15","x":"12","y":"20","background-opacity":"0.2"}', + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/statefulset-color.svg", + svgComplete: + "ui/public/static/img/meshmodels/kubernetes/complete/statefulset-complete.svg", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/statefulset-white.svg" + }, + position: { posX: 98.5, posY: 41.5 }, + whiteboardData: { style: {} } + } + }, + type: "StatefulSet" + } + } + } + }, + position: { x: 98.5, y: 41.5 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "dcb9da42-2a2c-404c-a111-0e5edf77490a", + type: "ConfigMap", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-scripts", + services: { + "dcb9da42-2a2c-404c-a111-0e5edf77490a": { + namespace: "default", + settings: { + data: { + "start-master.sh": + '#!/bin/bash\n\n[[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")"\nif [[ -f /opt/bitnami/redis/mounted-etc/master.conf ]];then\n cp /opt/bitnami/redis/mounted-etc/master.conf /opt/bitnami/redis/etc/master.conf\nfi\nif [[ -f /opt/bitnami/redis/mounted-etc/redis.conf ]];then\n cp /opt/bitnami/redis/mounted-etc/redis.conf /opt/bitnami/redis/etc/redis.conf\nfi\nARGS=("--port" "${REDIS_PORT}")\nARGS+=("--requirepass" "${REDIS_PASSWORD}")\nARGS+=("--masterauth" "${REDIS_PASSWORD}")\nARGS+=("--include" "/opt/bitnami/redis/etc/redis.conf")\nARGS+=("--include" "/opt/bitnami/redis/etc/master.conf")\nexec redis-server "${ARGS[@]}"\n', + "start-replica.sh": + '#!/bin/bash\n\nget_port() {\n hostname="$1"\n type="$2"\n\n port_var=$(echo "${hostname^^}_SERVICE_PORT_$type" | sed "s/-/_/g")\n port=${!port_var}\n\n if [ -z "$port" ]; then\n case $type in\n "SENTINEL")\n echo 26379\n ;;\n "REDIS")\n echo 6379\n ;;\n esac\n else\n echo $port\n fi\n}\n\nget_full_hostname() {\n hostname="$1"\n full_hostname="${hostname}.${HEADLESS_SERVICE}"\n echo "${full_hostname}"\n}\n\nREDISPORT=$(get_port "$HOSTNAME" "REDIS")\nHEADLESS_SERVICE="redis-headless.default.svc.cluster.local"\n\n[[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")"\n[[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")"\nif [[ -f /opt/bitnami/redis/mounted-etc/replica.conf ]];then\n cp /opt/bitnami/redis/mounted-etc/replica.conf /opt/bitnami/redis/etc/replica.conf\nfi\nif [[ -f /opt/bitnami/redis/mounted-etc/redis.conf ]];then\n cp /opt/bitnami/redis/mounted-etc/redis.conf /opt/bitnami/redis/etc/redis.conf\nfi\n\necho "" >> /opt/bitnami/redis/etc/replica.conf\necho "replica-announce-port $REDISPORT" >> /opt/bitnami/redis/etc/replica.conf\necho "replica-announce-ip $(get_full_hostname "$HOSTNAME")" >> /opt/bitnami/redis/etc/replica.conf\nARGS=("--port" "${REDIS_PORT}")\nARGS+=("--replicaof" "${REDIS_MASTER_HOST}" "${REDIS_MASTER_PORT_NUMBER}")\nARGS+=("--requirepass" "${REDIS_PASSWORD}")\nARGS+=("--masterauth" "${REDIS_MASTER_PASSWORD}")\nARGS+=("--include" "/opt/bitnami/redis/etc/redis.conf")\nARGS+=("--include" "/opt/bitnami/redis/etc/replica.conf")\nexec redis-server "${ARGS[@]}"\n' + }, + name: "redis-scripts", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "dcb9da42-2a2c-404c-a111-0e5edf77490a", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 7 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/configmap-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/configmap-white.svg" + }, + position: { posX: -34.5, posY: 44 }, + whiteboardData: { style: {} } + } + }, + type: "ConfigMap" + } + } + } + }, + position: { x: -34.5, y: 44 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "b652fdc8-3c49-4118-9f6a-ff53eaf592cc", + type: "ConfigMap", + apiVersion: "v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis-configuration", + services: { + "b652fdc8-3c49-4118-9f6a-ff53eaf592cc": { + namespace: "default", + settings: { + data: { + "master.conf": + 'dir /data\n# User-supplied master configuration:\nrename-command FLUSHDB ""\nrename-command FLUSHALL ""\n# End of master configuration', + "redis.conf": + '# User-supplied common configuration:\n# Enable AOF https://redis.io/topics/persistence#append-only-file\nappendonly yes\n# Disable RDB persistence, AOF persistence already enabled.\nsave ""\n# End of common configuration', + "replica.conf": + 'dir /data\n# User-supplied replica configuration:\nrename-command FLUSHDB ""\nrename-command FLUSHALL ""\n# End of replica configuration' + }, + name: "redis-configuration", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "b652fdc8-3c49-4118-9f6a-ff53eaf592cc", + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "bottom-round-rectangle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { "z-index": 15 }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/configmap-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/configmap-white.svg" + }, + position: { posX: -89, posY: -106 }, + whiteboardData: { style: {} } + } + }, + type: "ConfigMap" + } + } + } + }, + position: { x: -89, y: -106 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + }, + { + data: { + id: "cf5ad900-f207-463d-814f-c0a1f7640a74", + type: "NetworkPolicy", + apiVersion: "networking.k8s.io/v1", + meshType: "kubernetes", + model: "kubernetes", + config: { + name: "redis", + services: { + "cf5ad900-f207-463d-814f-c0a1f7640a74": { + namespace: "default", + settings: { + spec: { + egress: [{}], + ingress: [{ ports: [{ port: 6379 }] }], + "pod Selector": { + "match Labels": { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/name": "redis" + } + }, + "policy Types": ["Ingress", "Egress"] + }, + name: "redis", + namespace: "default", + labels: { + "app.kubernetes.io/instance": "redis", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "redis", + "app.kubernetes.io/version": "7.2.5", + "helm.sh/chart": "redis-19.6.2" + } + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "cf5ad900-f207-463d-814f-c0a1f7640a74", + "meshmodel-metadata": { + capabilities: "", + genealogy: "", + isAnnotation: false, + isCustomResource: false, + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/projects/kubernetes/icon/white/kubernetes-icon-white.svg", + model: "kubernetes", + modelDisplayName: "Kubernetes", + primaryColor: "#326CE5", + secondaryColor: "#7aa1f0", + shape: "circle", + status: "enabled", + styleOverrides: { "z-index": 6 }, + subCategory: "Orchestration & Management", + svgColor: + "ui/public/static/img/meshmodels/kubernetes/color/kubernetes-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/kubernetes/white/kubernetes-white.svg" + }, + position: { posX: 62.5, posY: 107 }, + whiteboardData: { style: {} } + } + }, + type: "NetworkPolicy" + } + } + } + }, + position: { x: 62.5, y: 107 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ] + }, + elementStyles: { + "13f72f39-ca34-46b7-9369-c57e705f9144": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "9", + zIndex: "9", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-replicas", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-replicas", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "d5a87d27-8891-4103-bf07-a611d3f28feb": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "2", + zIndex: "2", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-headless", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-headless", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "b8e45445-623b-45e8-bcc5-c929897a26f0": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "12", + zIndex: "12", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-health", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-health", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "58b68215-37ec-420c-bdcf-d1891a8e64d7": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "13", + zIndex: "13", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-master", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "concave-hexagon", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-master", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "ba5208c6-8cd0-4892-a1ce-963b119dc06f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "5", + zIndex: "5", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-replica", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-replica", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "2d0d2a71-ef39-4b07-a7bd-56ed39a116d1": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "10", + zIndex: "10", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-replicas", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "concave-hexagon", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNC43NDQyIDEzLjI3NUwyMi4xMTE5IDE0Ljc3MDVMNy41NjYzMyAyMy4wMzQ3VjY2LjEzMzZMMjIuMjE1OCA3NS4yNDk1TDI0Ljc4NjMgNzYuODQ5MUwyMS41ODczIDgxLjk5MDFMMTkuMDE2NyA4MC4zOTA1TDIuOTM5MjQgNzAuMzg2QzIuMDUxMTUgNjkuODMzNCAxLjUxMTIzIDY4Ljg2MTUgMS41MTEyMyA2Ny44MTU1VjIxLjI3MjhDMS41MTEyMyAyMC4xODM2IDIuMDk2MjMgMTkuMTc4NCAzLjA0MzE5IDE4LjY0MDRMMTkuMTIwNyA5LjUwNTg0TDIxLjc1MzEgOC4wMTAyNUwyNC43NDQyIDEzLjI3NVpNNjUuMjU2IDEzLjI3NUw2Ny44ODg0IDE0Ljc3MDVMODIuNDMzOSAyMy4wMzQ3VjY2LjEzMzZMNjcuNzg0NCA3NS4yNDk1TDY1LjIxMzkgNzYuODQ5MUw2OC40MTMgODEuOTkwMUw3MC45ODM1IDgwLjM5MDVMODcuMDYxIDcwLjM4NkM4Ny45NDkxIDY5LjgzMzQgODguNDg5IDY4Ljg2MTUgODguNDg5IDY3LjgxNTVWMjEuMjcyOEM4OC40ODkgMjAuMTgzNiA4Ny45MDQgMTkuMTc4NCA4Ni45NTcxIDE4LjY0MDRMNzAuODc5NSA5LjUwNTg0TDY4LjI0NzIgOC4wMTAyNUw2NS4yNTYgMTMuMjc1Wk00NS42NjUzIDQ0LjMyMDFDNDUuNjY1MyA0My45NTA1IDQ1Ljk2NSA0My42NTA4IDQ2LjMzNDYgNDMuNjUwOEg3NC41NjA5Qzc0LjkzMDUgNDMuNjUwOCA3NS4yMzAyIDQzLjk1MDUgNzUuMjMwMiA0NC4zMjAxVjY0LjI2NDVDNzUuMjMwMiA2NC42MzQyIDc0LjkzMDUgNjQuOTMzOCA3NC41NjA5IDY0LjkzMzhINDYuMzM0NkM0NS45NjUgNjQuOTMzOCA0NS42NjUzIDY0LjYzNDIgNDUuNjY1MyA2NC4yNjQ1VjQ0LjMyMDFaTTUxLjE2NzIgNTkuODQ3M0M1MS41Mjk5IDU5Ljg0NzMgNTEuODMyMiA1OS41MTI3IDUxLjgzMjIgNTkuMTExMVY0OS40MDY2QzUxLjgzMjIgNDkuMDA1IDUxLjUyOTkgNDguNjcwNCA1MS4xNjcyIDQ4LjY3MDRDNTAuODA0NCA0OC42NzA0IDUwLjUwMjEgNDkuMDA1IDUwLjUwMjEgNDkuNDA2NlY1OS4xMTExQzUwLjUwMjEgNTkuNTEyNyA1MC44MDQ0IDU5Ljg0NzMgNTEuMTY3MiA1OS44NDczWk01Ny4zMzQxIDU5Ljg0NzNDNTcuNjk2OCA1OS44NDczIDU3Ljk5OTEgNTkuNTEyNyA1Ny45OTkxIDU5LjExMTFWNDkuNDA2NkM1Ny45OTkxIDQ5LjAwNSA1Ny42OTY4IDQ4LjY3MDQgNTcuMzM0MSA0OC42NzA0QzU2Ljk3MTMgNDguNjcwNCA1Ni42NjkgNDkuMDA1IDU2LjY2OSA0OS40MDY2VjU5LjExMTFDNTYuNjY5IDU5LjUxMjcgNTYuOTcxMyA1OS44NDczIDU3LjMzNDEgNTkuODQ3M1pNNjMuNTAxIDU5Ljg0NzNDNjMuODYzNyA1OS44NDczIDY0LjE2NiA1OS41MTI3IDY0LjE2NiA1OS4xMTExVjQ5LjQwNjZDNjQuMTY2IDQ5LjAwNSA2My44NjM3IDQ4LjY3MDQgNjMuNTAxIDQ4LjY3MDRDNjMuMTM4MiA0OC42NzA0IDYyLjgzNTkgNDkuMDA1IDYyLjgzNTkgNDkuNDA2NlY1OS4xMTExQzYyLjgzNTkgNTkuNTEyNyA2My4xMzgyIDU5Ljg0NzMgNjMuNTAxIDU5Ljg0NzNaTTY5LjY2NzkgNTkuODQ3M0M3MC4wMzA2IDU5Ljg0NzMgNzAuMzMyOSA1OS41MTI3IDcwLjMzMjkgNTkuMTExMVY0OS40MDY2QzcwLjMzMjkgNDkuMDA1IDcwLjAzMDYgNDguNjcwNCA2OS42Njc5IDQ4LjY3MDRDNjkuMzA1MSA0OC42NzA0IDY5LjAwMjggNDkuMDA1IDY5LjAwMjggNDkuNDA2NlY1OS4xMTExQzY5LjAwMjggNTkuNTEyNyA2OS4zMDUxIDU5Ljg0NzMgNjkuNjY3OSA1OS44NDczWk0zMC44NTY1IDIwLjg5NTlDMzAuNDg2OCAyMC44OTU5IDMwLjE4NzEgMjEuMTk1NiAzMC4xODcxIDIxLjU2NTNWNDEuNTA5NkMzMC4xODcxIDQxLjg3OTMgMzAuNDg2OCA0Mi4xNzkgMzAuODU2NSA0Mi4xNzlINTkuMDgyN0M1OS40NTI0IDQyLjE3OSA1OS43NTIgNDEuODc5MyA1OS43NTIgNDEuNTA5NlYyMS41NjUzQzU5Ljc1MiAyMS4xOTU2IDU5LjQ1MjQgMjAuODk1OSA1OS4wODI3IDIwLjg5NTlIMzAuODU2NVpNMzYuMzU0IDM2LjQyMzJDMzYuMzU0IDM2LjgyNDcgMzYuMDUxOCAzNy4xNTk0IDM1LjY4OSAzNy4xNTk0QzM1LjMyNjIgMzcuMTU5NCAzNS4wMjM5IDM2LjgyNDcgMzUuMDIzOSAzNi40MjMyVjI2LjcxODZDMzUuMDIzOSAyNi4zMTcxIDM1LjMyNjIgMjUuOTgyNCAzNS42ODkgMjUuOTgyNEMzNi4wNTE4IDI1Ljk4MjQgMzYuMzU0IDI2LjMxNzEgMzYuMzU0IDI2LjcxODZWMzYuNDIzMlpNNDIuNTgxNCAzNi40MjMyQzQyLjU4MTQgMzYuODI0NyA0Mi4yNzkxIDM3LjE1OTQgNDEuOTE2NCAzNy4xNTk0QzQxLjU1MzYgMzcuMTU5NCA0MS4yNTEzIDM2LjgyNDcgNDEuMjUxMyAzNi40MjMyVjI2LjcxODZDNDEuMjUxMyAyNi4zMTcxIDQxLjU1MzYgMjUuOTgyNCA0MS45MTY0IDI1Ljk4MjRDNDIuMjc5MSAyNS45ODI0IDQyLjU4MTQgMjYuMzE3MSA0Mi41ODE0IDI2LjcxODZWMzYuNDIzMlpNNDguNzQ4MyAzNi40MjMyQzQ4Ljc0ODMgMzYuODI0NyA0OC40NDYgMzcuMTU5NCA0OC4wODMzIDM3LjE1OTRDNDcuNzIwNSAzNy4xNTk0IDQ3LjQxODIgMzYuODI0NyA0Ny40MTgyIDM2LjQyMzJWMjYuNzE4NkM0Ny40MTgyIDI2LjMxNzEgNDcuNzIwNSAyNS45ODI0IDQ4LjA4MzMgMjUuOTgyNEM0OC40NDYgMjUuOTgyNCA0OC43NDgzIDI2LjMxNzEgNDguNzQ4MyAyNi43MTg2VjM2LjQyMzJaTTU0LjkxNTIgMzYuNDIzMkM1NC45MTUyIDM2LjgyNDcgNTQuNjEyOSAzNy4xNTk0IDU0LjI1MDIgMzcuMTU5NEM1My44ODc0IDM3LjE1OTQgNTMuNTg1MSAzNi44MjQ3IDUzLjU4NTEgMzYuNDIzMlYyNi43MTg2QzUzLjU4NTEgMjYuMzE3MSA1My44ODc0IDI1Ljk4MjQgNTQuMjUwMiAyNS45ODI0QzU0LjYxMjkgMjUuOTgyNCA1NC45MTUyIDI2LjMxNzEgNTQuOTE1MiAyNi43MTg2VjM2LjQyMzJaTTE0Ljc2OTcgNDQuMzIwMUMxNC43Njk3IDQzLjk1MDUgMTUuMDY5NCA0My42NTA4IDE1LjQzOTEgNDMuNjUwOEg0My42NjUzQzQ0LjAzNSA0My42NTA4IDQ0LjMzNDYgNDMuOTUwNSA0NC4zMzQ2IDQ0LjMyMDFWNjQuMjY0NUM0NC4zMzQ2IDY0LjYzNDIgNDQuMDM1IDY0LjkzMzggNDMuNjY1MyA2NC45MzM4SDE1LjQzOTFDMTUuMDY5NCA2NC45MzM4IDE0Ljc2OTcgNjQuNjM0MiAxNC43Njk3IDY0LjI2NDVWNDQuMzIwMVpNMjAuMjcxNiA1OS44NDczQzIwLjYzNDQgNTkuODQ3MyAyMC45MzY3IDU5LjUxMjcgMjAuOTM2NyA1OS4xMTExVjQ5LjQwNjZDMjAuOTM2NyA0OS4wMDUgMjAuNjM0NCA0OC42NzA0IDIwLjI3MTYgNDguNjcwNEMxOS45MDg4IDQ4LjY3MDQgMTkuNjA2NSA0OS4wMDUgMTkuNjA2NSA0OS40MDY2VjU5LjExMTFDMTkuNjA2NSA1OS41MTI3IDE5LjkwODggNTkuODQ3MyAyMC4yNzE2IDU5Ljg0NzNaTTI2LjQzODUgNTkuODQ3M0MyNi44MDEzIDU5Ljg0NzMgMjcuMTAzNiA1OS41MTI3IDI3LjEwMzYgNTkuMTExMVY0OS40MDY2QzI3LjEwMzYgNDkuMDA1IDI2LjgwMTMgNDguNjcwNCAyNi40Mzg1IDQ4LjY3MDRDMjYuMDc1NyA0OC42NzA0IDI1Ljc3MzQgNDkuMDA1IDI1Ljc3MzQgNDkuNDA2NlY1OS4xMTExQzI1Ljc3MzQgNTkuNTEyNyAyNi4wNzU3IDU5Ljg0NzMgMjYuNDM4NSA1OS44NDczWk0zMi42MDU0IDU5Ljg0NzNDMzIuOTY4MiA1OS44NDczIDMzLjI3MDUgNTkuNTEyNyAzMy4yNzA1IDU5LjExMTFWNDkuNDA2NkMzMy4yNzA1IDQ5LjAwNSAzMi45NjgyIDQ4LjY3MDQgMzIuNjA1NCA0OC42NzA0QzMyLjI0MjcgNDguNjcwNCAzMS45NDA0IDQ5LjAwNSAzMS45NDA0IDQ5LjQwNjZWNTkuMTExMUMzMS45NDA0IDU5LjUxMjcgMzIuMjQyNyA1OS44NDczIDMyLjYwNTQgNTkuODQ3M1pNMzguODMyOCA1OS44NDczQzM5LjE5NTUgNTkuODQ3MyAzOS40OTc4IDU5LjUxMjcgMzkuNDk3OCA1OS4xMTExVjQ5LjQwNjZDMzkuNDk3OCA0OS4wMDUgMzkuMTk1NSA0OC42NzA0IDM4LjgzMjggNDguNjcwNEMzOC40NyA0OC42NzA0IDM4LjE2NzcgNDkuMDA1IDM4LjE2NzcgNDkuNDA2NlY1OS4xMTExQzM4LjE2NzcgNTkuNTEyNyAzOC40NyA1OS44NDczIDM4LjgzMjggNTkuODQ3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-replicas", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "76832250-a439-46dc-951f-c146b1743fe1": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "4", + zIndex: "4", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "32px", + width: "32px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0", + backgroundOpacity: "0", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "1px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzMCAxNTIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMjUuMzk2IDMyLjQ4NmMtLjAxNC0yLjQxLTEuMTYzLTQuMTktMy4zNDMtNS4xOTgtMS41NzktLjcyOC0zLjE5OC0xLjM2NS00LjgwOS0yLjA0NmwtMjEuMDE4LTguNzY3Qzg2LjcxNSAxMi41MTMgNzcuMjA2IDguNTQ3IDY3LjcgNC41OGMtMS43MTgtLjcyMi0zLjM4Mi0uODAxLTUuMTI2LS4wNTMtNC4yMDEgMS43OTctOC40MzIgMy41My0xMi42NDggNS4yOWwtMTkuODE0IDguMjZhNTgzNjYuNjMgNTgzNjYuNjMgMCAwIDAtMjEuNDg5IDguOTcyYy0yLjU3MyAxLjA3My0zLjg2IDIuOTU1LTMuODY0IDUuNzQ4IDAgNi41MjYuMDIzIDEzLjA1MSAwIDE5LjU4LS4wNDMgOC4xMzItLjA0IDE2LjI1OSAxLjQ1NCAyNC4zMDRhOTkuMDQ2IDk5LjA0NiAwIDAgMCAzLjAyNCAxMi4yMyA5NC4xMyA5NC4xMyAwIDAgMCAyMC4yMTYgMzQuOTMgOTMuNTI3IDkzLjUyNyAwIDAgMCAzMi45MzggMjMuMTczYzEuNTUuNjU1IDMuMTE0LjkyNCA0LjcyMS4yNjFhOTIuODE1IDkyLjgxNSAwIDAgMCAyMi42My0xMy4yMjEgOTMuOTgzIDkzLjk4MyAwIDAgMCAxOS4zOTgtMjAuODg4IDkzLjY4IDkzLjY4IDAgMCAwIDE0LjkwNi0zNy4wODEgODUuMzcgODUuMzcgMCAwIDAgMS4yNzctMTIuMzM1Yy4xMS00Ljk4OC4wMjYtOS45ODMuMDI2LTE0Ljk3NGguMDQ2YzAtNS40My4wMjktMTAuODU5IDAtMTYuMjg5WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik04Ni43NSA2MS4zMzNoLTMuNTQyVjU0LjI1YzAtOS43NzUtNy45MzMtMTcuNzA4LTE3LjcwOC0xNy43MDgtOS43NzUgMC0xNy43MDggNy45MzMtMTcuNzA4IDE3LjcwOHY3LjA4M0g0NC4yNWMtMy44OTYgMC03LjA4MyAzLjE4OC03LjA4MyA3LjA4NHYzNS40MTZjMCAzLjg5NiAzLjE4NyA3LjA4NCA3LjA4MyA3LjA4NGg0Mi41YzMuODk2IDAgNy4wODMtMy4xODggNy4wODMtNy4wODRWNjguNDE3YzAtMy44OTYtMy4xODctNy4wODQtNy4wODMtNy4wODRaTTY1LjUgOTMuMjA4Yy0zLjg5NiAwLTcuMDgzLTMuMTg3LTcuMDgzLTcuMDgzIDAtMy44OTYgMy4xODctNy4wODMgNy4wODMtNy4wODMgMy44OTYgMCA3LjA4MyAzLjE4NyA3LjA4MyA3LjA4MyAwIDMuODk2LTMuMTg3IDcuMDgzLTcuMDgzIDcuMDgzWm0xMC45OC0zMS44NzVINTQuNTJWNTQuMjVjMC02LjA1NiA0LjkyNC0xMC45OCAxMC45OC0xMC45OHMxMC45OCA0LjkyNCAxMC45OCAxMC45OHY3LjA4M1oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "over", + backgroundImageContainment: "over", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "node", + backgroundClip: "node", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "1px", + paddingLeft: "1px", + "padding-right": "1px", + paddingRight: "1px", + "padding-top": "1px", + paddingTop: "1px", + "padding-bottom": "1px", + paddingBottom: "1px" + }, + "fbdd7b0c-2f5f-4192-b17e-79b85331f109": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "3", + zIndex: "3", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-master", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "round-triangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "12px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODQiIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA4NCA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMC4xOSAwQzI5LjY1OTYgMCAyOS4xNTA5IDAuMjEwNzE0IDI4Ljc3NTggMC41ODU3ODZDMjguNDAwNyAwLjk2MDg1OSAyOC4xOSAxLjQ2OTU3IDI4LjE5IDJWMjQuNDVDMjguMTkgMjQuOTgwNCAyOC40MDA3IDI1LjQ4OTEgMjguNzc1OCAyNS44NjQyQzI5LjE1MDkgMjYuMjM5MyAyOS42NTk2IDI2LjQ1IDMwLjE5IDI2LjQ1SDM4Ljc4VjM4LjIySDExLjE3VjUwLjU1SDJDMS40Njk1NyA1MC41NSAwLjk2MDg1OSA1MC43NjA3IDAuNTg1Nzg2IDUxLjEzNThDMC4yMTA3MTQgNTEuNTEwOSAwIDUyLjAxOTYgMCA1Mi41NUwwIDc1QzAgNzUuNTMwNCAwLjIxMDcxNCA3Ni4wMzkxIDAuNTg1Nzg2IDc2LjQxNDJDMC45NjA4NTkgNzYuNzg5MyAxLjQ2OTU3IDc3IDIgNzdIMjQuNDNDMjQuOTYwNCA3NyAyNS40NjkxIDc2Ljc4OTMgMjUuODQ0MiA3Ni40MTQyQzI2LjIxOTMgNzYuMDM5MSAyNi40MyA3NS41MzA0IDI2LjQzIDc1VjUyLjU1QzI2LjQzIDUyLjAxOTYgMjYuMjE5MyA1MS41MTA5IDI1Ljg0NDIgNTEuMTM1OEMyNS40NjkxIDUwLjc2MDcgMjQuOTYwNCA1MC41NSAyNC40MyA1MC41NUgxNS44NVY0Mi45SDY4LjQ1VjUwLjU1SDU5LjU3QzU5LjAzOTYgNTAuNTUgNTguNTMwOSA1MC43NjA3IDU4LjE1NTggNTEuMTM1OEM1Ny43ODA3IDUxLjUxMDkgNTcuNTcgNTIuMDE5NiA1Ny41NyA1Mi41NVY3NUM1Ny41NyA3NS41MzA0IDU3Ljc4MDcgNzYuMDM5MSA1OC4xNTU4IDc2LjQxNDJDNTguNTMwOSA3Ni43ODkzIDU5LjAzOTYgNzcgNTkuNTcgNzdIODJDODIuNTMwNCA3NyA4My4wMzkxIDc2Ljc4OTMgODMuNDE0MiA3Ni40MTQyQzgzLjc4OTMgNzYuMDM5MSA4NCA3NS41MzA0IDg0IDc1VjUyLjU1Qzg0IDUyLjAxOTYgODMuNzg5MyA1MS41MTA5IDgzLjQxNDIgNTEuMTM1OEM4My4wMzkxIDUwLjc2MDcgODIuNTMwNCA1MC41NSA4MiA1MC41NUg3My4xMlYzOC4yMkg0My40NlYyNi40NUg1Mi42M0M1My4xNjA0IDI2LjQ1IDUzLjY2OTEgMjYuMjM5MyA1NC4wNDQyIDI1Ljg2NDJDNTQuNDE5MyAyNS40ODkxIDU0LjYzIDI0Ljk4MDQgNTQuNjMgMjQuNDVWMkM1NC42MyAxLjQ2OTU3IDU0LjQxOTMgMC45NjA4NTkgNTQuMDQ0MiAwLjU4NTc4NkM1My42NjkxIDAuMjEwNzE0IDUzLjE2MDQgMCA1Mi42MyAwTDMwLjE5IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "4.5px", + backgroundPositionY: "4.5px", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-master", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "12px", + paddingLeft: "12px", + "padding-right": "12px", + paddingRight: "12px", + "padding-top": "12px", + paddingTop: "12px", + "padding-bottom": "12px", + paddingBottom: "12px" + }, + "a2e159e1-a6ee-424b-b284-252e56bef0e7": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "8", + zIndex: "8", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-master", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIHZpZXdCb3g9IjAgMCA5MCA5MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4wMTcgMUMxNC41ODgzIDEgMTAuOTk4IDQuNTkwMjIgMTAuOTk4IDkuMDE4OTlWODEuMDUzN0MxMC45OTggODUuNDgyNSAxNC41ODgzIDg5LjA3MjcgMTkuMDE3MSA4OS4wNzI3SDcwLjEzOUM3NC41Njc4IDg5LjA3MjcgNzguMTU4MSA4NS40ODI1IDc4LjE1ODEgODEuMDUzN1Y5LjAxOUM3OC4xNTgxIDQuNTkwMjMgNzQuNTY3OCAxIDcwLjEzOSAxSDE5LjAxN1pNMzIuOTk4IDExLjM5NjVDMzIuOTk4IDEwLjA3MyAzNC4wNzA5IDkgMzUuMzk0NSA5SDUyLjQ1MTRDNTMuNzc1IDkgNTQuODQ4IDEwLjA3MyA1NC44NDggMTEuMzk2NUM1NC44NDggMTIuNzIwMSA1My43NzUgMTMuNzkzMSA1Mi40NTE0IDEzLjc5MzFIMzUuMzk0NUMzNC4wNzA5IDEzLjc5MzEgMzIuOTk4IDEyLjcyMDEgMzIuOTk4IDExLjM5NjVaTTQ0LjQyNjIgNTMuMzgxNUM1MS45ODc0IDUzLjM4MTUgNTguMTE2OSA0Ny4yNTIgNTguMTE2OSAzOS42OTA4QzU4LjExNjkgMzIuMTI5NiA1MS45ODc0IDI2IDQ0LjQyNjIgMjZDMzYuODY1IDI2IDMwLjczNTQgMzIuMTI5NiAzMC43MzU0IDM5LjY5MDhDMzAuNzM1NCA0Ny4yNTIgMzYuODY1IDUzLjM4MTUgNDQuNDI2MiA1My4zODE1Wk0zNC41MDI5IDU0LjEwMThDMzQuNzc4MiA1NC4wNjE2IDM1LjA1NjYgNTQuMTMzMyAzNS4yOTIgNTQuMjgxNkMzNy43NTc0IDU1LjgzNSA0MC45MjAzIDU2Ljc2ODUgNDQuMzY5NCA1Ni43Njg1QzQ3LjgzODMgNTYuNzY4NSA1MS4wMTc3IDU1LjgyNDMgNTMuNDg5MSA1NC4yNTQ4QzUzLjcxOTUgNTQuMTA4NSA1My45OTE1IDU0LjAzNTggNTQuMjYyMiA1NC4wNzA1QzYwLjg3OTkgNTQuOTIwMiA2NS45OTM5IDYwLjU3NDcgNjUuOTkzOSA2Ny40MjM1VjcyLjcyNjlDNjUuOTkzOSA3Ny4yNTI5IDYyLjMyNDggODAuOTIyIDU3Ljc5ODggODAuOTIySDMxLjE5NDJDMjYuNjY4MiA4MC45MjIgMjIuOTk5MSA3Ny4yNTI5IDIyLjk5OTEgNzIuNzI2OVY2Ny40MjM1QzIyLjk5OTEgNjAuNjUzNSAyNy45OTYgNTUuMDUwNiAzNC41MDI5IDU0LjEwMThaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-master", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "e5817cf6-1c84-4aed-a8c4-d6fa34a5bfce": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "11", + zIndex: "11", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-master", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-master", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "4ebb716a-b777-46fb-a0c1-d15dfb47cb9f": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "14", + zIndex: "14", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-replicas", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "15px", + width: "15px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "0.2", + backgroundOpacity: "0.2", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAuODc4OTk3ODAyNzM0Mzc1IDAuNjU3MDAzNDAyNzA5OTYwOSAxMjIuNDAxMDAwOTc2NTYyNSAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuMzggMzguMzk1YzIuMzE0IDYuNjkgOC41MTYgMTIuNjA3IDE3LjE5MyAxNy4xMjcgMTEuMTYgNS44MTQgMjYuNTQyIDkuMzk0IDQzLjUwNiA5LjM5NHMzMi4zNDYtMy41OCA0My41MDYtOS4zOTRjOC42NzctNC41MiAxNC44NzktMTAuNDM3IDE3LjE5NC0xNy4xMjd2ODAuMzgzYzAgOC41MjItNi42NDEgMTYuMzYxLTE3LjY1NiAyMi4wOTgtMTAuOTkgNS43MjUtMjYuMjA4IDkuMjgxLTQzLjA0NCA5LjI4MXMtMzIuMDU0LTMuNTU2LTQzLjA0NC05LjI4MUM4LjAyMSAxMzUuMTM5IDEuMzggMTI3LjMgMS4zOCAxMTguNzc4VjM4LjM5NVoiIGZpbGw9IiMzMjZDRTUiIHN0cm9rZT0iI2ZmZiIvPjxwYXRoIGQ9Ik0xLjM4IDMyLjUzN2MwLTguNTIzIDYuNjQtMTYuMzYxIDE3LjY1NS0yMi4wOTkgMTAuOTktNS43MjUgMjYuMjA4LTkuMjggNDMuMDQ0LTkuMjhzMzIuMDU0IDMuNTU1IDQzLjA0NCA5LjI4YzExLjAxNSA1LjczNyAxNy42NTYgMTMuNTc2IDE3LjY1NiAyMi4wOTkgMCA4LjUyMi02LjY0MSAxNi4zNi0xNy42NTYgMjIuMDk5LTEwLjk5IDUuNzI0LTI2LjIwOCA5LjI4LTQzLjA0NCA5LjI4cy0zMi4wNTQtMy41NTYtNDMuMDQ0LTkuMjhDOC4wMjEgNDguODk4IDEuMzggNDEuMDU5IDEuMzggMzIuNTM1WiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjZmZmIi8+PHBhdGggZD0iTTEyMy4yNzkgMzIuNTM3YzAgMTcuNjA2LTI3LjQgMzEuODgtNjEuMiAzMS44OC0zMy44IDAtNjEuMi0xNC4yNzQtNjEuMi0zMS44OG0xMjIuNCAwYzAtMTcuNjA3LTI3LjQtMzEuODgtNjEuMi0zMS44OEMyOC4yOC42NTcuODggMTQuOTMuODggMzIuNTM3bTEyMi40IDB2ODYuMjQxYzAgMTcuNjA2LTI3LjQgMzEuODc5LTYxLjIgMzEuODc5LTMzLjggMC02MS4yLTE0LjI3My02MS4yLTMxLjg3OVYzMi41MzciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTYyLjg4IDc1LjU0YTQuMTQzIDQuMTQzIDAgMCAwLTEuNTMzLjM3NEw0MC40NCA4NS41NTNhMy45NzIgMy45NzIgMCAwIDAtMS4zOTEgMS4wNjEgMy43NiAzLjc2IDAgMCAwLS43NzMgMS41MzRsLTUuMTU4IDIxLjY1YTMuNjY0IDMuNjY0IDAgMCAwLS4wMzkgMS41MTkgMy44NTQgMy44NTQgMCAwIDAgLjgxIDEuNzE5bDE0LjQ3IDE3LjM2Yy4zNzUuNDQ5Ljg1LjgxMiAxLjM5MiAxLjA2MWE0LjEzNyA0LjEzNyAwIDAgMCAxLjczNS4zNzhsMjMuMjA2LS4wMDVjLjYuMDAxIDEuMTkzLS4xMjggMS43MzUtLjM3N2EzLjk3MyAzLjk3MyAwIDAgMCAxLjM5MS0xLjA2bDE0LjQ2Ni0xNy4zNjJjLjM3NS0uNDUuNjM5LS45NzQuNzczLTEuNTM1YTMuNjY0IDMuNjY0IDAgMCAwIDAtMS43MDNsLTUuMTY2LTIxLjY1YTMuNzYgMy43NiAwIDAgMC0uNzcyLTEuNTM0IDMuOTc0IDMuOTc0IDAgMCAwLTEuMzkxLTEuMDYybC0yMC45MS05LjYzM2E0LjE1MiA0LjE1MiAwIDAgMC0xLjkzOS0uMzc0WiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02My4wODYgODIuOTA4Yy0uNjkgMC0xLjI1MS42LTEuMjUxIDEuMzQybC4wMDIuMDMzYzAgLjEtLjAwNi4yMjItLjAwMi4zMS4wMTYuNDI3LjExMy43NTQuMTcxIDEuMTQ4LjEwNS44NDIuMTk0IDEuNTQuMTM5IDIuMTktLjA1My4yNDUtLjI0LjQ2OS0uNDA2LjYyNGwtLjAzLjUxMWMtLjc1LjA2LTEuNTA3LjE3LTIuMjYyLjMzNi0zLjI1LjcxMS02LjA0NyAyLjMyNi04LjE3NyA0LjUwNy0uMTM4LS4wOTEtLjM4LS4yNTktLjQ1Mi0uMzEtLjIyMy4wMy0uNDQ5LjA5Ni0uNzQzLS4wNy0uNTYtLjM2My0xLjA3LS44NjUtMS42ODctMS40Ny0uMjgzLS4yOS0uNDg4LS41NjUtLjgyNC0uODQ0LS4wNzYtLjA2My0uMTkzLS4xNDktLjI3OC0uMjE0YTEuNTIyIDEuNTIyIDAgMCAwLS44NzItLjMxNyAxLjIyNSAxLjIyNSAwIDAgMC0uOTk3LjQyNWMtLjQzLjUyMi0uMjkzIDEuMzE5LjMwOCAxLjc4bC4wMTguMDE0Yy4wODMuMDY0LjE4NC4xNDcuMjYuMi4zNTYuMjU1LjY4Mi4zODUgMS4wMzcuNTg2Ljc0OS40NDYgMS4zNy44MTYgMS44NjEgMS4yNjIuMTkyLjE5OC4yMjYuNTQ2LjI1Mi42OTdsLjQuMzQ1Yy0yLjE0NiAzLjExOC0zLjE0IDYuOTY5LTIuNTUzIDEwLjg5MmwtLjUyNC4xNDdjLS4xMzguMTczLS4zMzMuNDQzLS41MzguNTI0LS42NDMuMTk2LTEuMzY4LjI2OC0yLjI0My4zNTYtLjQxLjAzMy0uNzY1LjAxMy0xLjIuMDkzLS4wOTYuMDE4LS4yMy4wNTEtLjMzNS4wNzVsLS4wMS4wMDItLjAyLjAwNmMtLjczNy4xNzItMS4yMS44MjYtMS4wNTggMS40Ny4xNTMuNjQ1Ljg3MyAxLjAzNyAxLjYxNS44ODJsLjAxOS0uMDAyLjAyNC0uMDA4Yy4xMDMtLjAyMi4yMzMtLjA0Ni4zMjMtLjA3LjQyOC0uMTEuNzM5LS4yNzMgMS4xMjMtLjQxNS44MjgtLjI4NiAxLjUxNC0uNTI2IDIuMTgyLS42MTkuMjgtLjAyMS41NzMuMTY2LjcyLjI0NWwuNTQ1LS4wOWMxLjI1NSAzLjc1NSAzLjg4NiA2Ljc5IDcuMjE3IDguNjk0bC0uMjI3LjUyNmMuMDgyLjIwNS4xNzIuNDgxLjExLjY4My0uMjQyLjYwOC0uNjU4IDEuMjQ5LTEuMTMyIDEuOTY0LS4yMy4zMzEtLjQ2NC41ODctLjY3Ljk2NS0uMDUuMDktLjExNC4yMjktLjE2MS4zMjUtLjMyMi42NjQtLjA4NiAxLjQyOS41MzIgMS43MTYuNjIxLjI4OCAxLjM5My0uMDE2IDEuNzI3LS42ODFsLjAwMy0uMDAzdi0uMDAzYy4wNDctLjA5NC4xMTUtLjIxOC4xNTUtLjMwNy4xNzctLjM5MS4yMzYtLjcyNy4zNi0xLjEwNi4zMzItLjgwMy41MTQtMS42NDUuOTctMi4xNjkuMTI0LS4xNDQuMzI4LS4xOTkuNTM5LS4yNTRsLjI4My0uNDk1YTE2LjczMSAxNi43MzEgMCAwIDAgMTEuNTQ5LjAyOGMuMDguMTM3LjIyOC4zOTkuMjY3LjQ2NS4yMTUuMDY3LjQ0OS4xMDIuNjQuMzc0LjM0LjU2Mi41NzQgMS4yMjcuODU4IDIuMDMuMTI0LjM3OS4xODYuNzE1LjM2MyAxLjEwNy4wNC4wODkuMTA4LjIxNS4xNTUuMzA5LjMzNC42NjggMS4xMDguOTczIDEuNzMuNjg0LjYxOC0uMjg3Ljg1NC0xLjA1Mi41MzMtMS43MTYtLjA0OC0uMDk1LS4xMTQtLjIzNC0uMTY0LS4zMjUtLjIwNy0uMzc4LS40NDEtLjYzMi0uNjctLjk2Mi0uNDc1LS43MTUtLjg2Ny0xLjMwOS0xLjExLTEuOTE3LS4xMDItLjMxMy4wMTctLjUwOC4wOTYtLjcxMi0uMDQ3LS4wNTItLjE0OS0uMzQ4LS4yMDktLjQ4NyAzLjQ2Mi0xLjk3MyA2LjAxNS01LjEyMSA3LjIxNS04Ljc1Ni4xNjEuMDI0LjQ0My4wNzIuNTM0LjA5LjE4OS0uMTIuMzYyLS4yNzYuNy0uMjUuNjY5LjA5MyAxLjM1NS4zMzIgMi4xODMuNjE5LjM4NS4xNDIuNjk1LjMwNyAxLjEyMy40MTguMDkuMDIzLjIyLjA0NS4zMjMuMDY3LjAwOS4wMDIuMDE2LjAwNi4wMjQuMDA3LjAwNi4wMDIuMDE0LjAwMi4wMi4wMDMuNzQxLjE1NCAxLjQ2Mi0uMjM4IDEuNjE0LS44ODIuMTUzLS42NDUtLjMyMS0xLjI5OS0xLjA1OS0xLjQ3MS0uMTA3LS4wMjMtLjI2LS4wNjMtLjM2My0uMDgyLS40MzYtLjA4LS43OS0uMDYtMS4yLS4wOTMtLjg3Ni0uMDg5LTEuNi0uMTYxLTIuMjQ0LS4zNTYtLjI2My0uMDk4LS40NS0uNC0uNTQtLjUyNGwtLjUwNi0uMTQyYTE1LjA1OCAxNS4wNTggMCAwIDAtLjI2Mi01LjYzNyAxNS4zNTIgMTUuMzUyIDAgMCAwLTIuMzQ1LTUuMjNjLjEzLS4xMTMuMzc1LS4zMjIuNDQ0LS4zODQuMDItLjIxNi4wMDMtLjQ0My4yMzUtLjY4My40OTItLjQ0NiAxLjExMy0uODE2IDEuODYxLTEuMjYyLjM1Ni0uMjAxLjY4NC0uMzMxIDEuMDQtLjU4NS4wODEtLjA1OC4xOTEtLjE0OS4yNzYtLjIxNS42LS40NjIuNzM4LTEuMjU4LjMwNy0xLjc4LS40My0uNTIxLTEuMjY2LS41Ny0xLjg2Ni0uMTA4LS4wODUuMDY1LS4yMDEuMTUtLjI3OC4yMTQtLjMzNi4yNzktLjU0NC41NTQtLjgyNi44NDQtLjYxOC42MDUtMS4xMjggMS4xMDktMS42ODggMS40NzMtLjI0Mi4xMzYtLjU5OC4wODktLjc1OS4wOGwtLjQ3Ni4zMjdjLTIuNzE0LTIuNzQ1LTYuNDEtNC41MDEtMTAuMzg4LTQuODQyYTI4LjM1IDI4LjM1IDAgMCAxLS4wMy0uNTRjLS4xNjItLjE1LS4zNi0uMjc4LS40MDktLjYwMy0uMDU0LS42NS4wMzctMS4zNDguMTQyLTIuMTkuMDU4LS4zOTQuMTU1LS43MjEuMTcxLTEuMTQ4LjAwNC0uMDk3LS4wMDItLjIzOC0uMDAyLS4zNDMgMC0uNzQxLS41Ni0xLjM0Mi0xLjI1Mi0xLjM0MlptLTEuNTY3IDkuMzY1LS4zNzEgNi4zMzQtLjAyNy4wMTNjLS4wMjUuNTY2LS41MDggMS4wMTgtMS4xMDIgMS4wMThhMS4xMyAxLjEzIDAgMCAxLS42NS0uMjAzbC0uMDEuMDA1LTUuMzgzLTMuNjgyYzEuNjU1LTEuNTcgMy43Ny0yLjcyOSA2LjIxLTMuMjYzLjQ0NC0uMDk4Ljg5LS4xNyAxLjMzMy0uMjIyWm0zLjEzNyAwYTEzLjE5NSAxMy4xOTUgMCAwIDEgNy40OTcgMy40ODhsLTUuMzQ3IDMuNjU4LS4wMi0uMDA3YTEuMTMyIDEuMTMyIDAgMCAxLTEuNTEzLS4xOTcgMS4wMzUgMS4wMzUgMCAwIDEtLjI0LS42MTZsLS4wMDUtLjAwMy0uMzcyLTYuMzIzWm0tMTIuNjMyIDUuODUxIDQuOTE1IDQuMjQxLS4wMDUuMDI2Yy40NDMuMzcyLjUwOSAxLjAxOC4xMzkgMS40NjZhMS4xMDYgMS4xMDYgMCAwIDEtLjU3My4zNjNsLS4wMDUuMDIxLTYuMyAxLjc1NGMtLjMyLTIuODI4LjM3LTUuNTc4IDEuODMtNy44N1ptMjIuMDkuMDAzYTEyLjM0NSAxMi4zNDUgMCAwIDEgMS42MTIgMy44IDEyLjE1IDEyLjE1IDAgMCAxIC4yNzMgNC4wNDhsLTYuMzMyLTEuNzYtLjAwNi0uMDI2YTEuMDYyIDEuMDYyIDAgMCAxLS43ODMtMS4yNjRjLjA1NC0uMjI4LjE4LS40MjIuMzUtLjU2NWwtLjAwMi0uMDEzIDQuODg3LTQuMjJabS0xMi4wMzYgNC41NjZoMi4wMTRsMS4yNTEgMS41MDktLjQ1IDEuODg0LTEuODA3LjgzOC0xLjgxMy0uODQxLS40NDktMS44ODMgMS4yNTQtMS41MDdabTYuNDU1IDUuMTY1Yy4wODYtLjAwNC4xNy4wMDMuMjU0LjAxOGwuMDEtLjAxMyA2LjUxNyAxLjA2M2ExMi41MzUgMTIuNTM1IDAgMCAxLTUuMjE3IDYuMzIzbC0yLjUzLTUuODk1LjAwOS0uMDFhMS4wNSAxLjA1IDAgMCAxIC41MzUtMS4zOGMuMTM2LS4wNjQuMjgtLjA5OS40MjItLjEwNlptLTEwLjk0NC4wMjZjLjQ5Ny4wMDcuOTQzLjM0IDEuMDU5LjgyOGExLjAyIDEuMDIgMCAwIDEtLjA2Mi42NTVsLjAxOS4wMjMtMi41MDMgNS44MzZjLTIuMzQtMS40NDktNC4yMDQtMy42MTgtNS4yLTYuMjc5bDYuNDYtMS4wNTguMDEuMDEzYTEuMTQgMS4xNCAwIDAgMSAuMjE3LS4wMThabTUuNDU3IDIuNTU2Yy4xNzMtLjAwNi4zNS4wMjkuNTE2LjEwNi4yMi4xMDIuMzg4LjI2Mi40OTUuNDU0aC4wMjRsMy4xODUgNS41NTJjLS40MTQuMTM0LS44MzkuMjQ4LTEuMjczLjM0M2ExMy4zODMgMTMuMzgzIDAgMCAxLTcuMDYyLS4zNTFsMy4xNzctNS41NDFoLjAwNWExLjExIDEuMTEgMCAwIDEgLjkzMy0uNTYzWiIgZmlsbD0iIzMyNkNFNSIgc3Ryb2tlPSIjMzI2Q0U1IiBzdHJva2Utd2lkdGg9Ii4yNSIvPjwvc3ZnPg==)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-replicas", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "dcb9da42-2a2c-404c-a111-0e5edf77490a": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "7", + zIndex: "7", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-scripts", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-scripts", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "b652fdc8-3c49-4118-9f6a-ff53eaf592cc": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "15", + zIndex: "15", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis-configuration", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "bottom-round-rectangle", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAzMiAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNSAySDMxLjUxNTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0wIDJINS41MTE4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMTBIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMTBIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUgMThIMzEuNTE1NyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTggMThIMTMuNTExOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAyNkgzMS41MTU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMCAyNkg1LjUxMTg0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis-configuration", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + }, + "cf5ad900-f207-463d-814f-c0a1f7640a74": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "6", + zIndex: "6", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "redis", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "20px", + width: "20px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(50,108,229)", + backgroundColor: "rgb(50,108,229)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(60,129,255)", + borderColor: "rgb(60,129,255)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", + backgroundImage: + "url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiByb2xlPSJpbWciIHZpZXdCb3g9IjkuNzAgOS4yMCAyMTAuODYgMjA0Ljg2IiBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiPjxkZWZzIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+LmNscy0xe2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0xMzQuMzU4IDEyNi40NjU1MWEzLjU5MDIzIDMuNTkwMjMgMCAwIDAtLjg1NS0uMDY1IDMuNjg1MTUgMy42ODUxNSAwIDAgMC0xLjQyNS4zNyAzLjcyNSAzLjcyNSAwIDAgMC0xLjgwMyA0LjgyNWwtLjAyNi4wMzcgOC41MjggMjAuNjAzYTQzLjUzMDEyIDQzLjUzMDEyIDAgMCAwIDE3LjU5NS0yMi4xMDJsLTIxLjk3Ni0zLjcxNHptLTM0LjE5NCAyLjkyYTMuNzIgMy43MiAwIDAgMC0zLjU2OC0yLjg5NCAzLjY1NTYgMy42NTU2IDAgMCAwLS43MzMuMDY1bC0uMDM3LS4wNDUtMjEuNzg1IDMuNjk4YTQzLjY5NTA2IDQzLjY5NTA2IDAgMCAwIDE3LjU0IDIxLjk0Nmw4LjQ0Mi0yMC4zOTktLjA2Ni0uMDhhMy42ODMxOCAzLjY4MzE4IDAgMCAwIC4yMDctMi4yOTF6bTE4LjI0NSA4YTMuNzE4IDMuNzE4IDAgMCAwLTYuNTU3LjAwOGgtLjAxOGwtMTAuNzEzIDE5LjM3MmE0My42MzcgNDMuNjM3IDAgMCAwIDIzLjgxNSAxLjIyNXEyLjE5Ny0uNSA0LjI5Mi0xLjE5OWwtMTAuNzM4LTE5LjQwN3ptMzMuOTE0LTQ1bC0xNi40ODMgMTQuNzUzLjAwOS4wNDdhMy43MjUgMy43MjUgMCAwIDAgMS40NiA2LjM5NWwuMDIuMDg5IDIxLjM1IDYuMTVhNDQuMjc4IDQ0LjI3OCAwIDAgMC02LjM1Ni0yNy40MzJ6TTEyMS43IDk0LjAzODVhMy43MjUgMy43MjUgMCAwIDAgNS45MTMgMi44NGwuMDY1LjAyOCAxOC4wMzYtMTIuNzg5YTQzLjg1IDQzLjg1IDAgMCAwLTI1LjI4Ny0xMi4xOWwxLjI1MyAyMi4xMDV6bS0xOS4xIDIuOTIyYTMuNzIgMy43MiAwIDAgMCA1LjkwNC0yLjg1bC4wOTItLjA0NCAxLjI1My0yMi4xMzlhNDQuNjgyMDkgNDQuNjgyMDkgMCAwIDAtNC41MDEuNzc1IDQzLjQ2NjkgNDMuNDY2OSAwIDAgMC0yMC45MzcgMTEuNDA5bDE4LjE1NCAxMi44Njl6bS05LjY3OCAxNi43MjhhMy43MiAzLjcyIDAgMCAwIDEuNDYyLTYuMzk2bC4wMTgtLjA4Ny0xNi41NzQtMTQuODI1YTQzLjQ1NCA0My40NTQgMCAwIDAtNi4xNjggMjcuNTExbDIxLjI0NS02LjEzem0xNi4wOTggNi41MTJsNi4xMTQgMi45NCA2LjA5Ni0yLjkzMyAxLjUxNC02LjU4Mi00LjIxOS01LjI3NmgtNi43OWwtNC4yMzEgNS4yNjh6IiBjbGFzcz0iY2xzLTEiPjwvcGF0aD48cGF0aCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGQ9Ik0yMTYuMjA4IDEzMy4xNjY1MWwtMTcuNDIyLTc1LjY3NWExMy42MDIwNyAxMy42MDIwNyAwIDAgMC03LjI5My05LjA3M2wtNzAuNTIxLTMzLjY3YTEzLjU4OSAxMy41ODkgMCAwIDAtMTEuNzA1IDBsLTcwLjUwNyAzMy42ODhhMTMuNTk4IDEzLjU5OCAwIDAgMC03LjI5NSA5LjA3MmwtMTcuMzk0IDc1LjY3M2ExMy4zMTUgMTMuMzE1IDAgMCAwLS4wMDQgNS44MSAxMy41MDYwNyAxMy41MDYwNyAwIDAgMCAuNDkxIDEuNzE4IDEzLjA5OTggMTMuMDk5OCAwIDAgMCAxLjM0MyAyLjcyNmMuMjM5LjM2NS40OTEuNzIuNzY1IDEuMDY0bDQ4LjgwNCA2MC42NzhjLjIxMy4yNjQuNDQ4LjUwNS42ODEuNzVhMTMuNDIzMzQgMTMuNDIzMzQgMCAwIDAgMi41NzQgMi4xMzMgMTMuOTIzNyAxMy45MjM3IDAgMCAwIDMuODU3IDEuNjc3IDEzLjI5Nzg1IDEzLjI5Nzg1IDAgMCAwIDMuNDMuNDczaC43NTlsNzcuNTA0LS4wMThhMTIuOTkzNDUgMTIuOTkzNDUgMCAwIDAgMS40MS0uMDgzIDEzLjQ2OTIxIDEzLjQ2OTIxIDAgMCAwIDEuOTg5LS4zNzggMTMuODcyIDEzLjg3MiAwIDAgMCAxLjM4MS0uNDQyYy4zNTMtLjEzNS43MDUtLjI3IDEuMDQ1LS40MzNhMTMuOTQxMjcgMTMuOTQxMjcgMCAwIDAgMS40NzktLjgyMiAxMy4zMDM0NyAxMy4zMDM0NyAwIDAgMCAzLjIzNy0yLjg2NWwxLjQ4OC0xLjg1IDQ3LjI5OS01OC44NGExMy4xODUgMTMuMTg1IDAgMCAwIDIuMTA4LTMuNzg1IDEzLjY3MDM2IDEzLjY3MDM2IDAgMCAwIC41LTEuNzI0IDEzLjI4MjE1IDEzLjI4MjE1IDAgMCAwLS4wMDQtNS44MDl6bS03My4xNDcgMjkuNDMyYTE0LjUxNTc1IDE0LjUxNTc1IDAgMCAwIC43MDMgMS43MDMgMy4zMTQgMy4zMTQgMCAwIDAtLjMyNyAyLjQ5IDM5LjM3MjQ0IDM5LjM3MjQ0IDAgMCAwIDMuNzQyIDYuNyAzNS4wNjA0NCAzNS4wNjA0NCAwIDAgMSAyLjI2MyAzLjM2NGMuMTcuMzE1LjM5Mi44MDMuNTUzIDEuMTM2YTQuMjQgNC4yNCAwIDEgMS03LjYzIDMuNjA3Yy0uMTYxLS4zMy0uMzg1LS43Ny0uNTIyLTEuMDgyYTM1LjI3NTI4IDM1LjI3NTI4IDAgMCAxLTEuMjI1LTMuODY4IDM5LjMwNDYgMzkuMzA0NiAwIDAgMC0yLjg5Ni03LjA5NyAzLjMzNSAzLjMzNSAwIDAgMC0yLjE1NC0xLjMwN2MtLjEzNS0uMjMzLS42MzUtMS4xNDktLjkwMy0xLjYyM2E1NC42MTcgNTQuNjE3IDAgMCAxLTM4Ljk0OC0uMWwtLjk1NSAxLjczMWEzLjQyOSAzLjQyOSAwIDAgMC0xLjgxOS44ODYgMjkuNTE3MjggMjkuNTE3MjggMCAwIDAtMy4yNjggNy41ODIgMzQuODk5MzEgMzQuODk5MzEgMCAwIDEtMS4yMTggMy44NjhjLS4xMzUuMzEtLjM2MS43NDQtLjUyMiAxLjA3M3YuMDA5bC0uMDA3LjAwOGE0LjIzOCA0LjIzOCAwIDEgMS03LjYxOS0zLjYxNmMuMTU5LS4zMzUuMzcyLS44Mi41NC0xLjEzNWEzNS4xNzcwNiAzNS4xNzcwNiAwIDAgMSAyLjI2Mi0zLjM3MyA0MS4yMjc4NiA0MS4yMjc4NiAwIDAgMCAzLjgyLTYuODY2IDQuMTg3OTIgNC4xODc5MiAwIDAgMC0uMzc2LTIuMzg3bC43NjgtMS44NGE1NC45MjIgNTQuOTIyIDAgMCAxLTI0LjMzOC0zMC4zODdsLTEuODM5LjMxM2E0LjY4MDA3IDQuNjgwMDcgMCAwIDAtMi40MjgtLjg1NSAzOS41MjM1MiAzOS41MjM1MiAwIDAgMC03LjM1NiAyLjE2NSAzNS41ODg4NiAzNS41ODg4NiAwIDAgMS0zLjc4NyAxLjQ1Yy0uMzA1LjA4NC0uNzQ1LjE2OC0xLjA5My4yNDQtLjAyOC4wMS0uMDUyLjAyMi0uMDguMDI5YS42MDUxOC42MDUxOCAwIDAgMS0uMDY1LjAwNiA0LjIzNiA0LjIzNiAwIDEgMS0xLjg3NC04LjIyNGwuMDYxLS4wMTUuMDM3LS4wMWMuMzUzLS4wODMuODA1LS4yIDEuMTI3LS4yNjJhMzUuMjcgMzUuMjcgMCAwIDEgNC4wNS0uMzI2IDM5LjM4ODM1IDM5LjM4ODM1IDAgMCAwIDcuNTY0LTEuMjQyIDUuODM1MDYgNS44MzUwNiAwIDAgMCAxLjgxNC0xLjgzbDEuNzY3LS41MTZhNTQuNjEzIDU0LjYxMyAwIDAgMSA4LjYxMy0zOC4wNzNsLTEuMzUzLTEuMjA2YTQuNjg4IDQuNjg4IDAgMCAwLS44NDgtMi40MzYgMzkuMzY1NTggMzkuMzY1NTggMCAwIDAtNi4yNzctNC40MSAzNS4yNTAzIDM1LjI1MDMgMCAwIDEtMy40OTktMi4wNDZjLS4yNTYtLjE5MS0uNTk2LS40NzgtLjg3NC0uNzA0bC0uMDYzLS4wNDRhNC40NzMgNC40NzMgMCAwIDEtMS4wMzgtNi4yMjIgNC4wNjYgNC4wNjYgMCAwIDEgMy4zNjMtMS40ODggNS4wMyA1LjAzIDAgMCAxIDIuOTQyIDEuMTFjLjI4Ny4yMjUuNjguNTI2LjkzNS43NDVhMzUuMjUyODUgMzUuMjUyODUgMCAwIDEgMi43OCAyLjk1IDM5LjM4MzE0IDM5LjM4MzE0IDAgMCAwIDUuNjkgNS4xNDIgMy4zMzMgMy4zMzMgMCAwIDAgMi41MDcuMjQzcS43NTQuNTUgMS41MjIgMS4wODJhNTQuMjg4OTIgNTQuMjg4OTIgMCAwIDEgMjcuNTc3LTE1Ljc1NCA1NS4wNTE4MSA1NS4wNTE4MSAwIDAgMSA3LjYzLTEuMTczbC4xLTEuNzg0YTQuNjAwMSA0LjYwMDEgMCAwIDAgMS4zNy0yLjE4NCAzOS40NzU1MSAzOS40NzU1MSAwIDAgMC0uNDctNy42NTQgMzUuNDY2IDM1LjQ2NiAwIDAgMS0uNTc2LTQuMDE0Yy0uMDExLS4zMDcuMDA2LS43MzEuMDEtMS4wODEgMC0uMDQtLjAxLS4wNzktLjAxLS4xMThhNC4yNDIgNC4yNDIgMCAxIDEgOC40NDEtLjAwNGMwIC4zNy4wMjIuODYxLjAwOSAxLjJhMzUuMTA5IDM1LjEwOSAwIDAgMS0uNTc5IDQuMDEzIDM5LjUzMzQ2IDM5LjUzMzQ2IDAgMCAwLS40NzggNy42NTYgMy4zNDQgMy4zNDQgMCAwIDAgMS4zNzkgMi4xMWMuMDE1LjMwNS4wNjUgMS4zMjMuMTAyIDEuODg0YTU1LjMwOSA1NS4zMDkgMCAwIDEgMzUuMDMyIDE2LjkyN2wxLjYwNi0xLjE0N2E0LjY5MDEgNC42OTAxIDAgMCAwIDIuNTYtLjI3OCAzOS41MzE1MiAzOS41MzE1MiAwIDAgMCA1LjY5LTUuMTQ4IDM1LjAwMzgyIDM1LjAwMzgyIDAgMCAxIDIuNzg3LTIuOTVjLjI1OS0uMjIyLjY1LS41Mi45MzYtLjc0NmE0LjI0MiA0LjI0MiAwIDEgMSA1LjI1OCA2LjU5OGMtLjI4My4yMjktLjY1Ny41NDgtLjkyOS43NWEzNS4wOTUyMyAzNS4wOTUyMyAwIDAgMS0zLjUwNyAyLjA0NiAzOS40OTQ3NiAzOS40OTQ3NiAwIDAgMC02LjI3NyA0LjQxIDMuMzM3IDMuMzM3IDAgMCAwLS43OTIgMi4zOWMtLjIzNS4yMTYtMS4wNi45NDctMS40OTcgMS4zNDNhNTQuODM3IDU0LjgzNyAwIDAgMSA4Ljc5MiAzNy45ODNsMS43MDQuNDk2YTQuNzQ0OSA0Ljc0NDkgMCAwIDAgMS44MiAxLjgzMSAzOS40NjQ0OCAzOS40NjQ0OCAwIDAgMCA3LjU2OCAxLjI0NSAzNS42NDA0MSAzNS42NDA0MSAwIDAgMSA0LjA0Ni4zMjRjLjM1NS4wNjUuODY4LjIwNyAxLjIzLjI5YTQuMjM2IDQuMjM2IDAgMSAxLTEuODc4IDguMjIzbC0uMDYxLS4wMDhjLS4wMjgtLjAwNy0uMDU0LS4wMjItLjA4My0uMDI5LS4zNDgtLjA3Ni0uNzg1LS4xNTItMS4wOS0uMjMyYTM1LjE0MDcgMzUuMTQwNyAwIDAgMS0zLjc4NS0xLjQ2MiAzOS40NzY3MiAzOS40NzY3MiAwIDAgMC03LjM2My0yLjE2NSAzLjMzNyAzLjMzNyAwIDAgMC0yLjM2Mi44NzdxLS45LS4xNzEtMS44MDQtLjMxNmE1NC45MTk5NCA1NC45MTk5NCAwIDAgMS0yNC4zMjggMzAuNjA1eiIgY2xhc3M9ImNscy0xIj48L3BhdGg+PC9zdmc+)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "redis", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-c3dcee44-6b8a-498f-a44c-66682ccf4d2a-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +}); diff --git a/static/embed-test/embedded-design-statestore.js b/static/embed-test/embedded-design-statestore.js new file mode 100644 index 000000000000..321b67168693 --- /dev/null +++ b/static/embed-test/embedded-design-statestore.js @@ -0,0 +1,1119 @@ +import cytoscape from "https://cdn.jsdelivr.net/npm/cytoscape@3.27.0/+esm"; +const data = { + elements: { + nodes: [ + { + data: { + id: "942be105-a41a-40af-bc98-808cdf386a09", + label: "Component", + type: "Component", + version: "1.10.4", + apiVersion: "dapr.io/v1alpha1", + meshType: "dapr", + model: "dapr", + config: { + name: "state-store", + services: { + "942be105-a41a-40af-bc98-808cdf386a09": { + namespace: "default", + settings: { + auth: { "secret Store": "kubernetes" }, + scopes: [], + spec: { + "ignore Errors": false, + metadata: [ + { + name: "redisHost", + "secret Key Ref": { key: "redis", name: "redis-password" }, + value: "redis-master.default.svc.cluster.local:6379" + } + ], + type: "state.redis", + version: "v1" + }, + name: "state-store", + namespace: "default" + }, + traits: { + meshmap: { + edges: [], + fieldRefData: {}, + id: "942be105-a41a-40af-bc98-808cdf386a09", + label: "Component", + "meshmodel-data": { + category: { metadata: null, name: "Serverless" }, + components: null, + description: "", + displayName: "Dapr", + hostID: "26e64aa8-2d86-57bd-92b3-2a73160d27b4", + id: "b53eccf2-d651-5afb-88a0-26387cd31ebb", + metadata: { + isAnnotation: false, + source_uri: "https://wenerme.github.io/charts/dapr-1.12.3.tgz", + svgColor: + "ui/public/static/img/meshmodels/dapr/color/dapr-color.svg", + svgWhite: + "ui/public/static/img/meshmodels/dapr/white/dapr-white.svg" + }, + model: { version: "1.10.4" }, + name: "dapr", + registrant: { hostname: "artifacthub" }, + relationships: null, + schemaVersion: "models.meshery.io/v1beta1", + status: "enabled", + subCategory: "", + version: "v1.0.0" + }, + "meshmodel-metadata": { + capabilities: "", + defaultData: "", + genealogy: "", + isAnnotation: false, + isModelAnnotation: "FALSE", + isNamespaced: true, + logoURL: + "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos", + model: "dapr", + modelDisplayName: "Dapr", + primaryColor: "#0d2192", + secondaryColor: "#5266D7", + shape: "circle", + shapePolygonPoints: "", + status: "enabled", + styleOverrides: { + "active-bg-color": "rgb(0,0,0)", + "active-bg-opacity": "0.15", + "active-bg-size": "30px", + activeBgColor: "rgb(0,0,0)", + activeBgOpacity: "0.15", + activeBgSize: "30px", + "arrow-scale": "1", + arrowScale: "1", + "background-blacken": "0", + "background-clip": "none", + "background-color": "rgb(13,33,146)", + "background-fill": "solid", + "background-fit": "contain", + "background-gradient-direction": "to-bottom", + "background-gradient-stop-colors": "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + "background-height": "auto", + "background-height-relative-to": "inner", + "background-image": + "url(https://playground.meshery.io/ui/public/static/img/meshmodels/dapr/white/component-white.svg)", + "background-image-containment": "inside", + "background-image-crossorigin": "anonymous", + "background-image-opacity": "1", + "background-image-smoothing": "yes", + "background-offset-x": "0px", + "background-offset-y": "0px", + "background-opacity": "1", + "background-position-x": "50%", + "background-position-y": "50%", + "background-repeat": "no-repeat", + "background-width": "auto", + "background-width-relative-to": "inner", + backgroundBlacken: "0", + backgroundClip: "none", + backgroundColor: "rgb(13,33,146)", + backgroundFill: "solid", + backgroundFit: "contain", + backgroundGradientDirection: "to-bottom", + backgroundGradientStopColors: "rgb(153,153,153)", + backgroundGradientStopPositions: "0%", + backgroundHeight: "auto", + backgroundHeightRelativeTo: "inner", + backgroundImage: + "url(https://playground.meshery.io/ui/public/static/img/meshmodels/dapr/white/component-white.svg)", + backgroundImageContainment: "inside", + backgroundImageCrossorigin: "anonymous", + backgroundImageOpacity: "1", + backgroundImageSmoothing: "yes", + backgroundOffsetX: "0px", + backgroundOffsetY: "0px", + backgroundOpacity: "1", + backgroundPositionX: "50%", + backgroundPositionY: "50%", + backgroundRepeat: "no-repeat", + backgroundWidth: "auto", + backgroundWidthRelativeTo: "inner", + "border-color": "rgb(15,39,175)", + "border-opacity": "1", + "border-style": "solid", + "border-width": "0px", + borderColor: "rgb(15,39,175)", + borderOpacity: "1", + borderStyle: "solid", + borderWidth: "0px", + "bounds-expansion": "0px", + boundsExpansion: "0px", + color: "rgb(0,0,0)", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + content: "state-store", + "control-point-step-size": "40px", + "control-point-weight": "0.5", + "control-point-weights": "0.5", + controlPointStepSize: "40px", + controlPointWeight: "0.5", + controlPointWeights: "0.5", + "curve-style": "haystack", + curveStyle: "haystack", + display: "element", + "edge-distances": "intersection", + "edge-text-rotation": "none", + edgeDistances: "intersection", + edgeTextRotation: "none", + events: "yes", + "font-family": "Qanelas Soft, sans-serif", + "font-size": "8px", + "font-style": "normal", + "font-weight": "300", + fontFamily: "Qanelas Soft, sans-serif", + fontSize: "8px", + fontStyle: "normal", + fontWeight: "300", + ghost: "no", + "ghost-offset-x": "0px", + "ghost-offset-y": "0px", + "ghost-opacity": "0", + ghostOffsetX: "0px", + ghostOffsetY: "0px", + ghostOpacity: "0", + "haystack-radius": "0", + haystackRadius: "0", + height: "17.813940984890245px", + label: "state-store", + "line-cap": "butt", + "line-color": "rgb(153,153,153)", + "line-dash-offset": "0", + "line-dash-pattern": "6 3", + "line-fill": "solid", + "line-gradient-stop-colors": "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + "line-height": "1", + "line-opacity": "1", + "line-style": "solid", + lineCap: "butt", + lineColor: "rgb(153,153,153)", + lineDashOffset: "0", + lineDashPattern: "6 3", + lineFill: "solid", + lineGradientStopColors: "rgb(153,153,153)", + lineGradientStopPositions: "0%", + lineHeight: "1", + lineOpacity: "1", + lineStyle: "solid", + "loop-direction": "-45deg", + "loop-sweep": "-90deg", + loopDirection: "-45deg", + loopSweep: "-90deg", + "mid-source-arrow-color": "rgb(153,153,153)", + "mid-source-arrow-fill": "filled", + "mid-source-arrow-shape": "none", + "mid-source-arrow-width": "1px", + "mid-target-arrow-color": "rgb(153,153,153)", + "mid-target-arrow-fill": "filled", + "mid-target-arrow-shape": "none", + "mid-target-arrow-width": "1px", + midSourceArrowColor: "rgb(153,153,153)", + midSourceArrowFill: "filled", + midSourceArrowShape: "none", + midSourceArrowWidth: "1px", + midTargetArrowColor: "rgb(153,153,153)", + midTargetArrowFill: "filled", + midTargetArrowShape: "none", + midTargetArrowWidth: "1px", + "min-height": "0px", + "min-height-bias-bottom": "0px", + "min-height-bias-top": "0px", + "min-width": "0px", + "min-width-bias-left": "0px", + "min-width-bias-right": "0px", + "min-zoomed-font-size": "12px", + minHeight: "0px", + minHeightBiasBottom: "0px", + minHeightBiasTop: "0px", + minWidth: "0px", + minWidthBiasLeft: "0px", + minWidthBiasRight: "0px", + minZoomedFontSize: "12px", + opacity: "1", + "outline-color": "rgb(153,153,153)", + "outline-offset": "0px", + "outline-opacity": "1", + "outline-style": "solid", + "outline-width": "0px", + outlineColor: "rgb(153,153,153)", + outlineOffset: "0px", + outlineOpacity: "1", + outlineStyle: "solid", + outlineWidth: "0px", + "outside-texture-bg-color": "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgColor: "rgb(0,0,0)", + outsideTextureBgOpacity: "0.125", + "overlay-color": "rgb(0,0,0)", + "overlay-opacity": "0", + "overlay-padding": "10px", + "overlay-shape": "round-rectangle", + overlayColor: "rgb(0,0,0)", + overlayOpacity: "0", + overlayPadding: "10px", + overlayShape: "round-rectangle", + padding: "6px", + "padding-bottom": "6px", + "padding-left": "6px", + "padding-relative-to": "width", + "padding-right": "6px", + "padding-top": "6px", + paddingBottom: "6px", + paddingLeft: "6px", + paddingRelativeTo: "width", + paddingRight: "6px", + paddingTop: "6px", + "pie-1-background-color": "rgb(0,0,0)", + "pie-1-background-opacity": "1", + "pie-1-background-size": "0%", + "pie-10-background-color": "rgb(0,0,0)", + "pie-10-background-opacity": "1", + "pie-10-background-size": "0%", + "pie-11-background-color": "rgb(0,0,0)", + "pie-11-background-opacity": "1", + "pie-11-background-size": "0%", + "pie-12-background-color": "rgb(0,0,0)", + "pie-12-background-opacity": "1", + "pie-12-background-size": "0%", + "pie-13-background-color": "rgb(0,0,0)", + "pie-13-background-opacity": "1", + "pie-13-background-size": "0%", + "pie-14-background-color": "rgb(0,0,0)", + "pie-14-background-opacity": "1", + "pie-14-background-size": "0%", + "pie-15-background-color": "rgb(0,0,0)", + "pie-15-background-opacity": "1", + "pie-15-background-size": "0%", + "pie-16-background-color": "rgb(0,0,0)", + "pie-16-background-opacity": "1", + "pie-16-background-size": "0%", + "pie-2-background-color": "rgb(0,0,0)", + "pie-2-background-opacity": "1", + "pie-2-background-size": "0%", + "pie-3-background-color": "rgb(0,0,0)", + "pie-3-background-opacity": "1", + "pie-3-background-size": "0%", + "pie-4-background-color": "rgb(0,0,0)", + "pie-4-background-opacity": "1", + "pie-4-background-size": "0%", + "pie-5-background-color": "rgb(0,0,0)", + "pie-5-background-opacity": "1", + "pie-5-background-size": "0%", + "pie-6-background-color": "rgb(0,0,0)", + "pie-6-background-opacity": "1", + "pie-6-background-size": "0%", + "pie-7-background-color": "rgb(0,0,0)", + "pie-7-background-opacity": "1", + "pie-7-background-size": "0%", + "pie-8-background-color": "rgb(0,0,0)", + "pie-8-background-opacity": "1", + "pie-8-background-size": "0%", + "pie-9-background-color": "rgb(0,0,0)", + "pie-9-background-opacity": "1", + "pie-9-background-size": "0%", + "pie-size": "100%", + pie10BackgroundColor: "rgb(0,0,0)", + pie10BackgroundOpacity: "1", + pie10BackgroundSize: "0%", + pie11BackgroundColor: "rgb(0,0,0)", + pie11BackgroundOpacity: "1", + pie11BackgroundSize: "0%", + pie12BackgroundColor: "rgb(0,0,0)", + pie12BackgroundOpacity: "1", + pie12BackgroundSize: "0%", + pie13BackgroundColor: "rgb(0,0,0)", + pie13BackgroundOpacity: "1", + pie13BackgroundSize: "0%", + pie14BackgroundColor: "rgb(0,0,0)", + pie14BackgroundOpacity: "1", + pie14BackgroundSize: "0%", + pie15BackgroundColor: "rgb(0,0,0)", + pie15BackgroundOpacity: "1", + pie15BackgroundSize: "0%", + pie16BackgroundColor: "rgb(0,0,0)", + pie16BackgroundOpacity: "1", + pie16BackgroundSize: "0%", + pie1BackgroundColor: "rgb(0,0,0)", + pie1BackgroundOpacity: "1", + pie1BackgroundSize: "0%", + pie2BackgroundColor: "rgb(0,0,0)", + pie2BackgroundOpacity: "1", + pie2BackgroundSize: "0%", + pie3BackgroundColor: "rgb(0,0,0)", + pie3BackgroundOpacity: "1", + pie3BackgroundSize: "0%", + pie4BackgroundColor: "rgb(0,0,0)", + pie4BackgroundOpacity: "1", + pie4BackgroundSize: "0%", + pie5BackgroundColor: "rgb(0,0,0)", + pie5BackgroundOpacity: "1", + pie5BackgroundSize: "0%", + pie6BackgroundColor: "rgb(0,0,0)", + pie6BackgroundOpacity: "1", + pie6BackgroundSize: "0%", + pie7BackgroundColor: "rgb(0,0,0)", + pie7BackgroundOpacity: "1", + pie7BackgroundSize: "0%", + pie8BackgroundColor: "rgb(0,0,0)", + pie8BackgroundOpacity: "1", + pie8BackgroundSize: "0%", + pie9BackgroundColor: "rgb(0,0,0)", + pie9BackgroundOpacity: "1", + pie9BackgroundSize: "0%", + pieSize: "100%", + position: "origin", + "segment-distances": "20px", + "segment-weights": "0.5", + segmentDistances: "20px", + segmentWeights: "0.5", + "selection-box-border-color": "rgb(170,170,170)", + "selection-box-border-width": "1px", + "selection-box-color": "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxBorderColor: "rgb(170,170,170)", + selectionBoxBorderWidth: "1px", + selectionBoxColor: "rgb(221,221,221)", + selectionBoxOpacity: "0.65", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "source-arrow-color": "rgb(153,153,153)", + "source-arrow-fill": "filled", + "source-arrow-shape": "none", + "source-arrow-width": "1px", + "source-distance-from-node": "0px", + "source-endpoint": "outside-to-node", + "source-label": "", + "source-text-margin-x": "0px", + "source-text-margin-y": "0px", + "source-text-offset": "0px", + "source-text-rotation": "none", + sourceArrowColor: "rgb(153,153,153)", + sourceArrowFill: "filled", + sourceArrowShape: "none", + sourceArrowWidth: "1px", + sourceDistanceFromNode: "0px", + sourceEndpoint: "outside-to-node", + sourceLabel: "", + sourceTextMarginX: "0px", + sourceTextMarginY: "0px", + sourceTextOffset: "0px", + sourceTextRotation: "none", + "target-arrow-color": "rgb(153,153,153)", + "target-arrow-fill": "filled", + "target-arrow-shape": "none", + "target-arrow-width": "1px", + "target-distance-from-node": "0px", + "target-endpoint": "outside-to-node", + "target-label": "", + "target-text-margin-x": "0px", + "target-text-margin-y": "0px", + "target-text-offset": "0px", + "target-text-rotation": "none", + targetArrowColor: "rgb(153,153,153)", + targetArrowFill: "filled", + targetArrowShape: "none", + targetArrowWidth: "1px", + targetDistanceFromNode: "0px", + targetEndpoint: "outside-to-node", + targetLabel: "", + targetTextMarginX: "0px", + targetTextMarginY: "0px", + targetTextOffset: "0px", + targetTextRotation: "none", + "taxi-direction": "auto", + "taxi-turn": "50%", + "taxi-turn-min-distance": "10px", + taxiDirection: "auto", + taxiTurn: "50%", + taxiTurnMinDistance: "10px", + "text-background-color": "rgb(210,212,210)", + "text-background-opacity": "0.7", + "text-background-padding": "2px", + "text-background-shape": "round-rectangle", + "text-border-color": "rgb(0,0,0)", + "text-border-opacity": "0", + "text-border-style": "solid", + "text-border-width": "0px", + "text-events": "no", + "text-halign": "center", + "text-justification": "auto", + "text-margin-x": "0px", + "text-margin-y": "7px", + "text-max-width": "80px", + "text-opacity": "1", + "text-outline-color": "rgb(0,0,0)", + "text-outline-opacity": "1", + "text-outline-width": "0px", + "text-overflow-wrap": "whitespace", + "text-rotation": "none", + "text-transform": "none", + "text-valign": "bottom", + "text-wrap": "ellipsis", + textBackgroundColor: "rgb(210,212,210)", + textBackgroundOpacity: "0.7", + textBackgroundPadding: "2px", + textBackgroundShape: "round-rectangle", + textBorderColor: "rgb(0,0,0)", + textBorderOpacity: "0", + textBorderStyle: "solid", + textBorderWidth: "0px", + textEvents: "no", + textHalign: "center", + textJustification: "auto", + textMarginX: "0px", + textMarginY: "7px", + textMaxWidth: "80px", + textOpacity: "1", + textOutlineColor: "rgb(0,0,0)", + textOutlineOpacity: "1", + textOutlineWidth: "0px", + textOverflowWrap: "whitespace", + textRotation: "none", + textTransform: "none", + textValign: "bottom", + textWrap: "ellipsis", + "transition-delay": "0ms", + "transition-duration": "0ms", + "transition-property": "none", + "transition-timing-function": "linear", + transitionDelay: "0ms", + transitionDuration: "0ms", + transitionProperty: "none", + transitionTimingFunction: "linear", + "underlay-color": "rgb(0,0,0)", + "underlay-opacity": "0", + "underlay-padding": "10px", + "underlay-shape": "round-rectangle", + underlayColor: "rgb(0,0,0)", + underlayOpacity: "0", + underlayPadding: "10px", + underlayShape: "round-rectangle", + visibility: "visible", + width: "18.451704545454753px", + "z-compound-depth": "auto", + "z-index": "3", + "z-index-compare": "manual", + zCompoundDepth: "auto", + zIndex: "3", + zIndexCompare: "manual" + }, + styles: "", + subCategory: "", + svgColor: + "ui/public/static/img/meshmodels/dapr/color/component-color.svg", + svgComplete: "", + svgWhite: + "ui/public/static/img/meshmodels/dapr/white/component-white.svg" + }, + position: { posX: -184.54261101613818, posY: -248.1110296798097 }, + whiteboardData: {} + } + }, + type: "Component" + } + } + } + }, + position: { x: -184.54261101613818, y: -248.1110296798097 }, + group: "nodes", + removed: false, + selected: false, + selectable: true, + locked: false, + grabbable: true, + pannable: false, + classes: "" + } + ] + }, + elementStyles: { + "942be105-a41a-40af-bc98-808cdf386a09": { + events: "yes", + "text-events": "no", + textEvents: "no", + "transition-property": "none", + transitionProperty: "none", + "transition-duration": "0ms", + transitionDuration: "0ms", + "transition-delay": "0ms", + transitionDelay: "0ms", + "transition-timing-function": "linear", + transitionTimingFunction: "linear", + display: "element", + visibility: "visible", + opacity: "1", + "text-opacity": "1", + textOpacity: "1", + "min-zoomed-font-size": "12px", + minZoomedFontSize: "12px", + "z-compound-depth": "auto", + zCompoundDepth: "auto", + "z-index-compare": "manual", + zIndexCompare: "manual", + "z-index": "3", + zIndex: "3", + "overlay-padding": "10px", + overlayPadding: "10px", + "overlay-color": "rgb(0,0,0)", + overlayColor: "rgb(0,0,0)", + "overlay-opacity": "0", + overlayOpacity: "0", + "overlay-shape": "round-rectangle", + overlayShape: "round-rectangle", + "underlay-padding": "10px", + underlayPadding: "10px", + "underlay-color": "rgb(0,0,0)", + underlayColor: "rgb(0,0,0)", + "underlay-opacity": "0", + underlayOpacity: "0", + "underlay-shape": "round-rectangle", + underlayShape: "round-rectangle", + ghost: "no", + "ghost-offset-x": "0px", + ghostOffsetX: "0px", + "ghost-offset-y": "0px", + ghostOffsetY: "0px", + "ghost-opacity": "0", + ghostOpacity: "0", + "text-valign": "bottom", + textValign: "bottom", + "text-halign": "center", + textHalign: "center", + color: "rgb(0,0,0)", + "text-outline-color": "rgb(0,0,0)", + textOutlineColor: "rgb(0,0,0)", + "text-outline-opacity": "1", + textOutlineOpacity: "1", + "text-background-color": "rgb(210,212,210)", + textBackgroundColor: "rgb(210,212,210)", + "text-background-opacity": "0.7", + textBackgroundOpacity: "0.7", + "text-background-padding": "2px", + textBackgroundPadding: "2px", + "text-border-opacity": "0", + textBorderOpacity: "0", + "text-border-color": "rgb(0,0,0)", + textBorderColor: "rgb(0,0,0)", + "text-border-width": "0px", + textBorderWidth: "0px", + "text-border-style": "solid", + textBorderStyle: "solid", + "text-background-shape": "round-rectangle", + textBackgroundShape: "round-rectangle", + "text-justification": "auto", + textJustification: "auto", + "font-family": "Qanelas Soft, sans-serif", + fontFamily: "Qanelas Soft, sans-serif", + "font-style": "normal", + fontStyle: "normal", + "font-weight": "300", + fontWeight: "300", + "font-size": "8px", + fontSize: "8px", + "text-transform": "none", + textTransform: "none", + "text-wrap": "ellipsis", + textWrap: "ellipsis", + "text-overflow-wrap": "whitespace", + textOverflowWrap: "whitespace", + "text-max-width": "80px", + textMaxWidth: "80px", + "text-outline-width": "0px", + textOutlineWidth: "0px", + "line-height": "1", + lineHeight: "1", + label: "state-store", + "text-rotation": "none", + textRotation: "none", + "text-margin-x": "0px", + textMarginX: "0px", + "text-margin-y": "7px", + textMarginY: "7px", + "source-label": "", + sourceLabel: "", + "source-text-rotation": "none", + sourceTextRotation: "none", + "source-text-margin-x": "0px", + sourceTextMarginX: "0px", + "source-text-margin-y": "0px", + sourceTextMarginY: "0px", + "source-text-offset": "0px", + sourceTextOffset: "0px", + "target-label": "", + targetLabel: "", + "target-text-rotation": "none", + targetTextRotation: "none", + "target-text-margin-x": "0px", + targetTextMarginX: "0px", + "target-text-margin-y": "0px", + targetTextMarginY: "0px", + "target-text-offset": "0px", + targetTextOffset: "0px", + height: "17.813940984890245px", + width: "18.451704545454753px", + shape: "ellipse", + "shape-polygon-points": "-1 -1 1 -1 1 1 -1 1", + shapePolygonPoints: "-1 -1 1 -1 1 1 -1 1", + "background-color": "rgb(13,33,146)", + backgroundColor: "rgb(13,33,146)", + "background-fill": "solid", + backgroundFill: "solid", + "background-opacity": "1", + backgroundOpacity: "1", + "background-blacken": "0", + backgroundBlacken: "0", + "background-gradient-stop-colors": "rgb(153,153,153)", + backgroundGradientStopColors: "rgb(153,153,153)", + "background-gradient-stop-positions": "0%", + backgroundGradientStopPositions: "0%", + "background-gradient-direction": "to-bottom", + backgroundGradientDirection: "to-bottom", + padding: "6px", + "padding-relative-to": "width", + paddingRelativeTo: "width", + "bounds-expansion": "0px", + boundsExpansion: "0px", + "border-color": "rgb(15,39,175)", + borderColor: "rgb(15,39,175)", + "border-opacity": "1", + borderOpacity: "1", + "border-width": "0px", + borderWidth: "0px", + "border-style": "solid", + borderStyle: "solid", + "outline-color": "rgb(153,153,153)", + outlineColor: "rgb(153,153,153)", + "outline-opacity": "1", + outlineOpacity: "1", + "outline-width": "0px", + outlineWidth: "0px", + "outline-style": "solid", + outlineStyle: "solid", + "outline-offset": "0px", + outlineOffset: "0px", + "background-image": + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + backgroundImage: + "url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMjU1LjYwODc5IiB3aWR0aD0nNDgwJyBoZWlnaHQ9JzI1NS42MDg3OSc+PGRlZnM+PHN0eWxlPi5jbHMtMSwuY2xzLTJ7ZmlsbDojZmZmO30uY2xzLTJ7aXNvbGF0aW9uOmlzb2xhdGU7b3BhY2l0eTowLjA4O308L3N0eWxlPjwvZGVmcz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQiIGNsYXNzPSJjbHMtMSIgeD0iOTkuNzgwNDIiIHk9IjExLjE4OTM4IiB3aWR0aD0iMjgyLjE1MTY4IiBoZWlnaHQ9IjE5OC41NzI3NCIgcng9IjUuNDkzNDciLz48cmVjdCBpZD0iUmVjdGFuZ2xlLTQtMiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUtNCIgY2xhc3M9ImNscy0yIiB4PSI5OS43ODA0MiIgeT0iMTEuMTg5MzgiIHdpZHRoPSIxMDQuMzY5MzYiIGhlaWdodD0iMTk4LjU3Mjc0Ii8+PHJlY3QgaWQ9IlJlY3RhbmdsZS0zIiBjbGFzcz0iY2xzLTEiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSI0NTYuNjQwMjciIGhlaWdodD0iNDcuNjU5NTIiIHJ4PSIxMC4yMTgyNyIvPjxyZWN0IGlkPSJSZWN0YW5nbGUtNC0zIiBkYXRhLW5hbWU9IlJlY3RhbmdsZS00IiBjbGFzcz0iY2xzLTIiIHg9IjEwLjY3OTg3IiB5PSIxOTYuOTUwOTMiIHdpZHRoPSIxNDEuMjg1MjEiIGhlaWdodD0iNTguNjU3ODYiLz48L3N2Zz4=)", + "background-image-crossorigin": "anonymous", + backgroundImageCrossorigin: "anonymous", + "background-image-opacity": "1", + backgroundImageOpacity: "1", + "background-image-containment": "inside", + backgroundImageContainment: "inside", + "background-image-smoothing": "yes", + backgroundImageSmoothing: "yes", + "background-position-x": "50%", + backgroundPositionX: "50%", + "background-position-y": "50%", + backgroundPositionY: "50%", + "background-width-relative-to": "inner", + backgroundWidthRelativeTo: "inner", + "background-height-relative-to": "inner", + backgroundHeightRelativeTo: "inner", + "background-repeat": "no-repeat", + backgroundRepeat: "no-repeat", + "background-fit": "contain", + backgroundFit: "contain", + "background-clip": "none", + backgroundClip: "none", + "background-width": "auto", + backgroundWidth: "auto", + "background-height": "auto", + backgroundHeight: "auto", + "background-offset-x": "0px", + backgroundOffsetX: "0px", + "background-offset-y": "0px", + backgroundOffsetY: "0px", + "pie-size": "100%", + pieSize: "100%", + "pie-1-background-color": "rgb(0,0,0)", + pie1BackgroundColor: "rgb(0,0,0)", + "pie-1-background-size": "0%", + pie1BackgroundSize: "0%", + "pie-1-background-opacity": "1", + pie1BackgroundOpacity: "1", + "pie-2-background-color": "rgb(0,0,0)", + pie2BackgroundColor: "rgb(0,0,0)", + "pie-2-background-size": "0%", + pie2BackgroundSize: "0%", + "pie-2-background-opacity": "1", + pie2BackgroundOpacity: "1", + "pie-3-background-color": "rgb(0,0,0)", + pie3BackgroundColor: "rgb(0,0,0)", + "pie-3-background-size": "0%", + pie3BackgroundSize: "0%", + "pie-3-background-opacity": "1", + pie3BackgroundOpacity: "1", + "pie-4-background-color": "rgb(0,0,0)", + pie4BackgroundColor: "rgb(0,0,0)", + "pie-4-background-size": "0%", + pie4BackgroundSize: "0%", + "pie-4-background-opacity": "1", + pie4BackgroundOpacity: "1", + "pie-5-background-color": "rgb(0,0,0)", + pie5BackgroundColor: "rgb(0,0,0)", + "pie-5-background-size": "0%", + pie5BackgroundSize: "0%", + "pie-5-background-opacity": "1", + pie5BackgroundOpacity: "1", + "pie-6-background-color": "rgb(0,0,0)", + pie6BackgroundColor: "rgb(0,0,0)", + "pie-6-background-size": "0%", + pie6BackgroundSize: "0%", + "pie-6-background-opacity": "1", + pie6BackgroundOpacity: "1", + "pie-7-background-color": "rgb(0,0,0)", + pie7BackgroundColor: "rgb(0,0,0)", + "pie-7-background-size": "0%", + pie7BackgroundSize: "0%", + "pie-7-background-opacity": "1", + pie7BackgroundOpacity: "1", + "pie-8-background-color": "rgb(0,0,0)", + pie8BackgroundColor: "rgb(0,0,0)", + "pie-8-background-size": "0%", + pie8BackgroundSize: "0%", + "pie-8-background-opacity": "1", + pie8BackgroundOpacity: "1", + "pie-9-background-color": "rgb(0,0,0)", + pie9BackgroundColor: "rgb(0,0,0)", + "pie-9-background-size": "0%", + pie9BackgroundSize: "0%", + "pie-9-background-opacity": "1", + pie9BackgroundOpacity: "1", + "pie-10-background-color": "rgb(0,0,0)", + pie10BackgroundColor: "rgb(0,0,0)", + "pie-10-background-size": "0%", + pie10BackgroundSize: "0%", + "pie-10-background-opacity": "1", + pie10BackgroundOpacity: "1", + "pie-11-background-color": "rgb(0,0,0)", + pie11BackgroundColor: "rgb(0,0,0)", + "pie-11-background-size": "0%", + pie11BackgroundSize: "0%", + "pie-11-background-opacity": "1", + pie11BackgroundOpacity: "1", + "pie-12-background-color": "rgb(0,0,0)", + pie12BackgroundColor: "rgb(0,0,0)", + "pie-12-background-size": "0%", + pie12BackgroundSize: "0%", + "pie-12-background-opacity": "1", + pie12BackgroundOpacity: "1", + "pie-13-background-color": "rgb(0,0,0)", + pie13BackgroundColor: "rgb(0,0,0)", + "pie-13-background-size": "0%", + pie13BackgroundSize: "0%", + "pie-13-background-opacity": "1", + pie13BackgroundOpacity: "1", + "pie-14-background-color": "rgb(0,0,0)", + pie14BackgroundColor: "rgb(0,0,0)", + "pie-14-background-size": "0%", + pie14BackgroundSize: "0%", + "pie-14-background-opacity": "1", + pie14BackgroundOpacity: "1", + "pie-15-background-color": "rgb(0,0,0)", + pie15BackgroundColor: "rgb(0,0,0)", + "pie-15-background-size": "0%", + pie15BackgroundSize: "0%", + "pie-15-background-opacity": "1", + pie15BackgroundOpacity: "1", + "pie-16-background-color": "rgb(0,0,0)", + pie16BackgroundColor: "rgb(0,0,0)", + "pie-16-background-size": "0%", + pie16BackgroundSize: "0%", + "pie-16-background-opacity": "1", + pie16BackgroundOpacity: "1", + position: "origin", + "compound-sizing-wrt-labels": "include", + compoundSizingWrtLabels: "include", + "min-width": "0px", + minWidth: "0px", + "min-width-bias-left": "0px", + minWidthBiasLeft: "0px", + "min-width-bias-right": "0px", + minWidthBiasRight: "0px", + "min-height": "0px", + minHeight: "0px", + "min-height-bias-top": "0px", + minHeightBiasTop: "0px", + "min-height-bias-bottom": "0px", + minHeightBiasBottom: "0px", + "line-style": "solid", + lineStyle: "solid", + "line-color": "rgb(153,153,153)", + lineColor: "rgb(153,153,153)", + "line-fill": "solid", + lineFill: "solid", + "line-cap": "butt", + lineCap: "butt", + "line-opacity": "1", + lineOpacity: "1", + "line-dash-pattern": "6 3", + lineDashPattern: "6 3", + "line-dash-offset": "0", + lineDashOffset: "0", + "line-gradient-stop-colors": "rgb(153,153,153)", + lineGradientStopColors: "rgb(153,153,153)", + "line-gradient-stop-positions": "0%", + lineGradientStopPositions: "0%", + "curve-style": "haystack", + curveStyle: "haystack", + "haystack-radius": "0", + haystackRadius: "0", + "source-endpoint": "outside-to-node", + sourceEndpoint: "outside-to-node", + "target-endpoint": "outside-to-node", + targetEndpoint: "outside-to-node", + "control-point-step-size": "40px", + controlPointStepSize: "40px", + "control-point-weights": "0.5", + controlPointWeights: "0.5", + "segment-distances": "20px", + segmentDistances: "20px", + "segment-weights": "0.5", + segmentWeights: "0.5", + "taxi-turn": "50%", + taxiTurn: "50%", + "taxi-turn-min-distance": "10px", + taxiTurnMinDistance: "10px", + "taxi-direction": "auto", + taxiDirection: "auto", + "edge-distances": "intersection", + edgeDistances: "intersection", + "arrow-scale": "1", + arrowScale: "1", + "loop-direction": "-45deg", + loopDirection: "-45deg", + "loop-sweep": "-90deg", + loopSweep: "-90deg", + "source-distance-from-node": "0px", + sourceDistanceFromNode: "0px", + "target-distance-from-node": "0px", + targetDistanceFromNode: "0px", + "source-arrow-shape": "none", + sourceArrowShape: "none", + "mid-source-arrow-shape": "none", + midSourceArrowShape: "none", + "target-arrow-shape": "none", + targetArrowShape: "none", + "mid-target-arrow-shape": "none", + midTargetArrowShape: "none", + "source-arrow-color": "rgb(153,153,153)", + sourceArrowColor: "rgb(153,153,153)", + "mid-source-arrow-color": "rgb(153,153,153)", + midSourceArrowColor: "rgb(153,153,153)", + "target-arrow-color": "rgb(153,153,153)", + targetArrowColor: "rgb(153,153,153)", + "mid-target-arrow-color": "rgb(153,153,153)", + midTargetArrowColor: "rgb(153,153,153)", + "source-arrow-fill": "filled", + sourceArrowFill: "filled", + "mid-source-arrow-fill": "filled", + midSourceArrowFill: "filled", + "target-arrow-fill": "filled", + targetArrowFill: "filled", + "mid-target-arrow-fill": "filled", + midTargetArrowFill: "filled", + "source-arrow-width": "1px", + sourceArrowWidth: "1px", + "mid-source-arrow-width": "1px", + midSourceArrowWidth: "1px", + "target-arrow-width": "1px", + targetArrowWidth: "1px", + "mid-target-arrow-width": "1px", + midTargetArrowWidth: "1px", + "selection-box-color": "rgb(221,221,221)", + selectionBoxColor: "rgb(221,221,221)", + "selection-box-opacity": "0.65", + selectionBoxOpacity: "0.65", + "selection-box-border-color": "rgb(170,170,170)", + selectionBoxBorderColor: "rgb(170,170,170)", + "selection-box-border-width": "1px", + selectionBoxBorderWidth: "1px", + "active-bg-color": "rgb(0,0,0)", + activeBgColor: "rgb(0,0,0)", + "active-bg-opacity": "0.15", + activeBgOpacity: "0.15", + "active-bg-size": "30px", + activeBgSize: "30px", + "outside-texture-bg-color": "rgb(0,0,0)", + outsideTextureBgColor: "rgb(0,0,0)", + "outside-texture-bg-opacity": "0.125", + outsideTextureBgOpacity: "0.125", + content: "state-store", + "control-point-weight": "0.5", + controlPointWeight: "0.5", + "edge-text-rotation": "none", + edgeTextRotation: "none", + "padding-left": "6px", + paddingLeft: "6px", + "padding-right": "6px", + paddingRight: "6px", + "padding-top": "6px", + paddingTop: "6px", + "padding-bottom": "6px", + paddingBottom: "6px" + } + } +}; + +const addStyles = () => { + var css = ` + + .embed-design-container { + position: relative; + height: 100%; + width: 100%; + font-family: "Open Sans", sans-serif; + } + + .embed-canvas-container p { + margin: 0; + padding: 0; + } + + #embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8 .embed-canvas-container { + height: 100%; + width: 100%; + background-color: "inheirt"; + } + #embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8 .water-mark{ + background: "transparent"; + padding: 0.5rem; + color : inherit !important; + font-size: 1.5rem !important; + border: none; + cursor: pointer; + display: flex !important; + align-items: center; + gap: 0.5rem; + font-family: "Open Sans", sans-serif !important; + text-decoration: none !important; + outline: none !important; + } + + #embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8 .toolbar { + + pointer-events: auto ; + padding: 0.5rem; + cursor: pointer; + color : inherit; + display: flex; + gap: 0.5rem; + justify-content: space-between; + align-items: center; + font-size: 1.25rem; + } + `, + head = document.head || document.getElementsByTagName("head")[0], + style = document.createElement("style"); + + head.appendChild(style); + + style.type = "text/css"; + if (style.styleSheet) { + // This is required for IE8 and below. + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } +}; + +const CreateToolBar = () => { + const cyContainer = document.getElementById( + "embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8" + ); + const toolbar = document.createElement("div"); + toolbar.innerHTML = ` + + + `; + toolbar.style.cssText = + "position: absolute;z-index: 99999;right: 0.5rem;bottom: 0.5rem;margin: 0.5rem"; + cyContainer.appendChild(toolbar); +}; + +document.addEventListener("DOMContentLoaded", function () { + const embedContainer = document.getElementById( + "embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8" + ); + embedContainer.classList.add("embed-design-container"); + const cyContainer = document.createElement("div"); + cyContainer.id = "embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8-cy"; + cyContainer.classList.add("embed-canvas-container"); + embedContainer.appendChild(cyContainer); + addStyles(); + + var cy = (window.cy = cytoscape({ + container: document.getElementById( + "embedded-design-f0b9088c-ab17-41ee-9400-fcfc5f4d59a8-cy" + ), + + autounselectify: true, + + boxSelectionEnabled: false, + minZoom: 0.5, + maxZoom: 6.6, + layout: { + name: "preset" + }, + elements: data.elements, + style: data.style + })); + + Object.keys(data.elementStyles).forEach(id => { + cy.getElementById(id).style(data.elementStyles[id]); + }); + + cy.style().update(); + CreateToolBar(); +});